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

This commit is contained in:
2024-12-28 20:30:34 -07:00
parent 7e445e7fd3
commit 354b54b772
3 changed files with 21 additions and 26 deletions

View File

@@ -54,7 +54,7 @@ makeEnable config "myModules.desktop" true {
# Desktop
alacritty
blueman
clipit
# clipit
d-spy
dolphin
@@ -68,7 +68,6 @@ makeEnable config "myModules.desktop" true {
lxappearance
lxqt.lxqt-powermanagement
networkmanagerapplet
notify-osd-customizable
okular
pinentry
# mission-center
@@ -77,11 +76,11 @@ makeEnable config "myModules.desktop" true {
rofi
rofi-pass
rofi-systemd
shutter
# shutter
simplescreenrecorder
skippy-xd
synergy
transmission_3-gtk
# transmission_3-gtk
vlc
# volnoti
xfce.thunar

View File

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

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;
@@ -153,20 +153,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;
# };
# };
};
}