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