dotfiles/modules/home-manager/flameshot.nix

17 lines
304 B
Nix
Raw Normal View History

{ 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";
};
};
};
}