nix-config/modules/desktop/flameshot/settings.nix
Oliver Davies cda8ab835f
Some checks are pending
/ check (push) Waiting to run
Group desktop modules
2025-11-22 18:59:35 +00: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";
};
};
}