nix-config/modules/mixins/flameshot.nix

20 lines
404 B
Nix
Raw Normal View History

2025-04-05 09:00:56 +01:00
{
home-manager.users.opdavies =
{ config, ... }:
{
services.flameshot = {
enable = true;
settings = {
General = {
disabledTrayIcon = false;
saveAfterCopy = true;
savePath = "${config.xdg.userDirs.pictures}/Screenshots";
showHelp = false;
uiColor = "#60a5fa";
};
};
};
};
}