Extract a flameshot mixin

This commit is contained in:
Oliver Davies 2025-04-05 09:00:56 +01:00
parent 3379924c0e
commit 490aa3eb99
7 changed files with 20 additions and 32 deletions

View file

@ -0,0 +1,19 @@
{
home-manager.users.opdavies =
{ config, ... }:
{
services.flameshot = {
enable = true;
settings = {
General = {
disabledTrayIcon = false;
saveAfterCopy = true;
savePath = "${config.xdg.userDirs.pictures}/Screenshots";
showHelp = false;
uiColor = "#60a5fa";
};
};
};
};
}