diff --git a/home-manager/modules/rgb.nix b/home-manager/modules/rgb.nix deleted file mode 100644 index 3860675..0000000 --- a/home-manager/modules/rgb.nix +++ /dev/null @@ -1,17 +0,0 @@ -{pkgs, ...}: { - home.packages = [pkgs.openrgb-with-all-plugins]; - - systemd.user.services.openrgb-gui = { - Unit = { - Description = "OpenRGB GUI (daemon)"; - After = ["graphical-session.target"]; - PartOf = ["graphical-session.target"]; - }; - Service = { - ExecStart = "${pkgs.openrgb-with-all-plugins}/bin/openrgb --gui --startminimized --server 127.0.0.1:6742 --profile default"; - Restart = "on-failure"; - Environment = "QT_QPA_PLATFORM=wayland;xcb"; - }; - Install.WantedBy = ["graphical-session.target"]; - }; -} diff --git a/hosts/modules/udiskie.nix b/hosts/modules/udiskie.nix deleted file mode 100644 index df96ec8..0000000 --- a/hosts/modules/udiskie.nix +++ /dev/null @@ -1,10 +0,0 @@ -# TODO: figure out why this isnt working on wayland -{ - config, - pkgs, - ... -}: { - security.polkit.enable = true; - services.udisks2.enable = true; - services.gvfs.enable = true; -} diff --git a/manual-cleanup.txt b/manual-cleanup.txt deleted file mode 100644 index e30290e..0000000 --- a/manual-cleanup.txt +++ /dev/null @@ -1,15 +0,0 @@ -# Commands for cleaning up Nix system because I'm tired of looking these up: - -nix-env --list-generations - -# Perform garbage collection by deleting old derivations -nix-collect-garbage --delete-old - -# recommeneded to sometimes run as sudo to collect additional garbage -sudo nix-collect-garbage -d - -# As a separation of concerns - you will need to run this command to clean out boot -sudo /run/current-system/bin/switch-to-configuration boot - -# bonus: in case you're stuck in some limbo state -sudo /run/current-system/sw/bin/nixos-rebuild switch --flake .