nix-config/modules/flameshot/settings.nix

14 lines
312 B
Nix
Raw Permalink Normal View History

2025-07-27 21:33:43 +01:00
{
flake.modules.homeManager.gui =
{ config, ... }:
{
services.flameshot.settings.General = {
disabledTrayIcon = false;
saveAfterCopy = true;
savePath = "${config.xdg.userDirs.pictures}/Screenshots";
showHelp = false;
uiColor = "#60a5fa";
};
};
}