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

16 lines
304 B
Nix

{ username, ... }: {
services.flameshot = {
enable = true;
settings = {
General = {
disabledTrayIcon = false;
saveAfterCopy = true;
savePath = "/home/${username}/Pictures/Screenshots";
showHelp = false;
uiColor = "#60a5fa";
};
};
};
}