nicks-nix-config/modules/flameshot.nix

17 lines
273 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;
imageSavePath = "~/Pictures";
saveAsFileExtension = ".png";
};
};
};
}