mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-12 07:53:38 -05:00
15 lines
338 B
Nix
15 lines
338 B
Nix
{ config, ... }: {
|
|
systemd.user.services.flameshot.Unit.After = [];
|
|
services = {
|
|
flameshot = {
|
|
enable = true;
|
|
settings = {
|
|
General = {
|
|
savePath = "/home/${config.home.username}/ss/";
|
|
saveAsFileExtension = ".png";
|
|
showDesktopNotification = false;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|