dotfiles/common/users/homeModules/flameshot.nix

16 lines
338 B
Nix
Raw Normal View History

2024-10-02 16:36:52 -04:00
{ config, ... }: {
2025-01-14 18:43:10 -05:00
systemd.user.services.flameshot.Unit.After = [];
2024-10-02 16:36:52 -04:00
services = {
flameshot = {
enable = true;
settings = {
General = {
savePath = "/home/${config.home.username}/ss/";
saveAsFileExtension = ".png";
showDesktopNotification = false;
};
};
};
};
}