dotfiles/common/users/homeModules/flameshot.nix
2024-10-02 16:36:52 -04:00

16 lines
319 B
Nix

{ config, ... }: {
services = {
flameshot = {
enable = true;
settings = {
General = {
savePath = "/home/${config.home.username}/ss/";
saveAsFileExtension = ".png";
showDesktopNotification = false;
startupLaunch = true;
};
};
};
};
}