[NixOS] Replace shutter with flameshot (for screenshots)

This commit is contained in:
2025-01-01 12:20:30 -07:00
parent 4f4168768d
commit a6d9bdb7a9
3 changed files with 4 additions and 18 deletions

View File

@@ -78,6 +78,10 @@ makeEnable config "myModules.xmonad" true {
# package = pkgs.clipit;
# };
services.flameshot = {
enable = true;
};
services.picom = {
enable = true;
vSync = config.myModules.xmonad.picom.vSync.enable;
@@ -151,21 +155,5 @@ makeEnable config "myModules.xmonad" true {
# RestartSec = 3;
# };
# };
# systemd.user.services.shutter = {
# Unit = {
# Description = "Shutter";
# After = [ "graphical-session-pre.target" "tray.target" ];
# PartOf = [ "graphical-session.target" ];
# };
# Install = { WantedBy = [ "graphical-session.target" ]; };
# Service = {
# ExecStart = "${pkgs.shutter}/bin/shutter --min_at_startup";
# Restart = "always";
# RestartSec = 3;
# };
# };
};
}