diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-01-19 15:41:46 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-01-19 15:41:46 -0800 |
| commit | 9e5f560223669336402359da1f3413e4496b1956 (patch) | |
| tree | 9593e40e5900705b90cebbd2df7829d3733f77d6 /roles | |
| parent | b3947fa1eeadcdd1a2f19578a9e6705df27e59a1 (diff) | |
wayland: enable wlr support in flameshot
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/home/desktop/flameshot.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/roles/home/desktop/flameshot.nix b/roles/home/desktop/flameshot.nix index d079fc9..d86ee37 100644 --- a/roles/home/desktop/flameshot.nix +++ b/roles/home/desktop/flameshot.nix @@ -1,7 +1,11 @@ -{ config, ... }: +{ config, pkgs, ... }: { services.flameshot = { + package = pkgs.flameshot.override { + enableWlrSupport = true; + }; + settings = let c = config.theme.colors; in { General = { savePath = "Pictures/Screenshots"; |