dotfiles/lib/nixos/home-manager/modules/flameshot.nix

16 lines
304 B
Nix
Raw Normal View History

2024-03-18 20:33:28 +00:00
{ username, ... }: {
2024-03-16 22:12:53 +00:00
services.flameshot = {
enable = true;
settings = {
General = {
disabledTrayIcon = false;
saveAfterCopy = true;
savePath = "/home/${username}/Pictures/Screenshots";
showHelp = false;
uiColor = "#60a5fa";
};
};
};
}