mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-19 03:33:30 -05:00
15 lines
319 B
Nix
15 lines
319 B
Nix
{ config, ... }: {
|
|
services = {
|
|
flameshot = {
|
|
enable = true;
|
|
settings = {
|
|
General = {
|
|
savePath = "/home/${config.home.username}/ss/";
|
|
saveAsFileExtension = ".png";
|
|
showDesktopNotification = false;
|
|
startupLaunch = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|