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

@@ -54,7 +54,7 @@ makeEnable config "myModules.desktop" true {
# Desktop # Desktop
alacritty alacritty
blueman blueman
# clipit clipit
d-spy d-spy
dolphin dolphin
@@ -68,6 +68,7 @@ makeEnable config "myModules.desktop" true {
lxappearance lxappearance
lxqt.lxqt-powermanagement lxqt.lxqt-powermanagement
networkmanagerapplet networkmanagerapplet
notify-osd-customizable
okular okular
pinentry pinentry
# mission-center # mission-center
@@ -76,11 +77,11 @@ 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
# transmission_3-gtk transmission_3-gtk
vlc vlc
# volnoti # volnoti
xfce.thunar xfce.thunar

View File

@@ -52,10 +52,12 @@
}; };
taffybar = { taffybar = {
url = "github:taffybar/taffybar/master"; url = "github:taffybar/taffybar/old-master";
inputs = { inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils"; flake-utils.follows = "flake-utils";
git-ignore-nix.follows = "git-ignore-nix"; git-ignore-nix.follows = "git-ignore-nix";
xmonad.follows = "xmonad";
gtk-sni-tray.follows = "gtk-sni-tray"; gtk-sni-tray.follows = "gtk-sni-tray";
gtk-strut.follows = "gtk-strut"; gtk-strut.follows = "gtk-strut";
}; };
@@ -64,7 +66,9 @@
imalison-taffybar = { imalison-taffybar = {
url = "path:../dotfiles/config/taffybar"; url = "path:../dotfiles/config/taffybar";
inputs = { inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils"; flake-utils.follows = "flake-utils";
xmonad.follows = "xmonad";
taffybar.follows = "taffybar"; taffybar.follows = "taffybar";
}; };
}; };

View File

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