dotfiles/common/users/homeModules/flameshot.nix
2025-01-14 18:43:10 -05:00

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;
};
};
};
};
}