mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-23 05:09:32 -08:00
17 lines
273 B
Nix
17 lines
273 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
services.flameshot = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
General = {
|
||
|
disabledTrayIcon = false;
|
||
|
showStartupLaunchMessage = false;
|
||
|
imageSavePath = "~/Pictures";
|
||
|
saveAsFileExtension = ".png";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|