[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-pass
rofi-systemd
shutter
# shutter
simplescreenrecorder
skippy-xd
synergy

View File

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