From 2f17e369400b9c895b3554008ab3efbc76255428 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Thu, 25 Jul 2024 22:52:20 -0700 Subject: roles: home: migrate old home module to roles --- roles/home/desktop/flameshot.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 roles/home/desktop/flameshot.nix (limited to 'roles/home/desktop/flameshot.nix') diff --git a/roles/home/desktop/flameshot.nix b/roles/home/desktop/flameshot.nix new file mode 100644 index 0000000..d7f6e1f --- /dev/null +++ b/roles/home/desktop/flameshot.nix @@ -0,0 +1,19 @@ +{ 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; + }; + }; + }; +} -- cgit v1.2.3