nix-config/modules2/flameshot/settings.nix
Oliver Davies 2fd69f6266
All checks were successful
/ check (push) Successful in 1m47s
Move flameshot configuration
2025-07-27 21:38:40 +01:00

13 lines
312 B
Nix

{
flake.modules.homeManager.gui =
{ config, ... }:
{
services.flameshot.settings.General = {
disabledTrayIcon = false;
saveAfterCopy = true;
savePath = "${config.xdg.userDirs.pictures}/Screenshots";
showHelp = false;
uiColor = "#60a5fa";
};
};
}