nicks-nix-config/modules/flameshot.nix

17 lines
281 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-20 20:25:11 -07:00
savePath = "/home/nixolas/Pictures/";
2023-02-18 16:45:08 -08:00
saveAsFileExtension = ".png";
};
};
};
}