Revert "[NixOS] Disable a bunch of stuff to make ryzen-shine-unencrypted work"

This reverts commit 354b54b772.
This commit is contained in:
2024-12-29 12:11:44 -07:00
parent 89bd7e9a4c
commit 8881b704ca
3 changed files with 26 additions and 21 deletions

View File

@@ -73,10 +73,10 @@ makeEnable config "myModules.xmonad" true {
services.pasystray.enable = true;
# services.parcellite = {
# enable = true;
# package = pkgs.clipit;
# };
services.parcellite = {
enable = true;
package = pkgs.clipit;
};
services.picom = {
enable = true;
@@ -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;
};
};
};
}