aboutsummaryrefslogtreecommitdiff
path: root/roles/home/desktop/flameshot.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-02-07 22:34:28 -0800
committerCaroline Larimore <caroline@larimo.re>2025-04-14 18:58:49 -0700
commit7488b6f44fab0c36142587f60092236aeda4fecb (patch)
tree31051cf925c3ff7f4a51db28801bc0444d1411dd /roles/home/desktop/flameshot.nix
parent5966c6bf05697f300e39e2abdd1631122efe3d87 (diff)
migration: flameshot
Diffstat (limited to 'roles/home/desktop/flameshot.nix')
-rw-r--r--roles/home/desktop/flameshot.nix27
1 files changed, 0 insertions, 27 deletions
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" ];
- };
- };
-}