diff options
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/home/desktop/default.nix | 4 | ||||
| -rw-r--r-- | roles/home/desktop/flameshot.nix | 27 |
2 files changed, 0 insertions, 31 deletions
diff --git a/roles/home/desktop/default.nix b/roles/home/desktop/default.nix index 484def5..277c17d 100644 --- a/roles/home/desktop/default.nix +++ b/roles/home/desktop/default.nix @@ -63,10 +63,6 @@ let cfg = config.home.roles.desktop; in { fastfetch.enable = cfg.fetch; }; - services = { - flameshot.enable = cfg.screenshot; - }; - home = { packages = with pkgs; [ (writeShellScriptBin "switch-theme" '' diff --git a/roles/home/desktop/flameshot.nix b/roles/home/desktop/flameshot.nix deleted file mode 100644 index d079fc9..0000000 --- a/roles/home/desktop/flameshot.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ config, ... }: - -{ - services.flameshot = { - settings = let c = config.theme.colors; in { - General = { - savePath = "Pictures/Screenshots"; - filenamePattern = "%F_%T"; - - saveAfterCopy = true; - - uiColor = "#${c.bg}"; - contrastUiColor = "#${c.accent}"; - - startupLaunch = false; - }; - }; - }; - - #TODO: relocate. target.tray required for flameshot - systemd.user.targets.tray = { - Unit = { - Description = "Home Manager System Tray"; - Requires = [ "graphical-session-pre.target" ]; - }; - }; -} |