dotfiles/common/users/homeModules/flameshot.nix

16 lines
319 B
Nix
Raw Permalink Normal View History

2024-10-02 16:36:52 -04:00
{ config, ... }: {
services = {
flameshot = {
enable = true;
settings = {
General = {
savePath = "/home/${config.home.username}/ss/";
saveAsFileExtension = ".png";
showDesktopNotification = false;
startupLaunch = true;
};
};
};
};
}