nicks-nix-config/modules/flameshot.nix

17 lines
268 B
Nix
Raw Normal View History

2023-02-18 16:45:08 -08:00
{ pkgs, ... }:
{
services.flameshot = {
enable = true;
settings = {
General = {
disabledTrayIcon = false;
showStartupLaunchMessage = false;
2023-04-04 22:16:52 -07:00
savePath = "~/Pictures";
2023-02-18 16:45:08 -08:00
saveAsFileExtension = ".png";
};
};
};
}