[NixOS] Disable shutter

This commit is contained in:
2024-12-29 13:06:11 -07:00
parent cb9f478cbc
commit 728e5ee02f
2 changed files with 14 additions and 14 deletions

View File

@@ -77,7 +77,7 @@ makeEnable config "myModules.desktop" true {
rofi rofi
rofi-pass rofi-pass
rofi-systemd rofi-systemd
shutter # shutter
simplescreenrecorder simplescreenrecorder
skippy-xd skippy-xd
synergy synergy

View File

@@ -152,20 +152,20 @@ makeEnable config "myModules.xmonad" true {
# }; # };
# }; # };
systemd.user.services.shutter = { # systemd.user.services.shutter = {
Unit = { # Unit = {
Description = "Shutter"; # Description = "Shutter";
After = [ "graphical-session-pre.target" "tray.target" ]; # After = [ "graphical-session-pre.target" "tray.target" ];
PartOf = [ "graphical-session.target" ]; # PartOf = [ "graphical-session.target" ];
}; # };
Install = { WantedBy = [ "graphical-session.target" ]; }; # Install = { WantedBy = [ "graphical-session.target" ]; };
Service = { # Service = {
ExecStart = "${pkgs.shutter}/bin/shutter --min_at_startup"; # ExecStart = "${pkgs.shutter}/bin/shutter --min_at_startup";
Restart = "always"; # Restart = "always";
RestartSec = 3; # RestartSec = 3;
}; # };
}; # };
}; };
} }