mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
16 lines
319 B
Nix
16 lines
319 B
Nix
{ config, ... }: {
|
|
services = {
|
|
flameshot = {
|
|
enable = true;
|
|
settings = {
|
|
General = {
|
|
savePath = "/home/${config.home.username}/ss/";
|
|
saveAsFileExtension = ".png";
|
|
showDesktopNotification = false;
|
|
startupLaunch = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|