Remove gaming.nix, move zeroad

This commit is contained in:
Oliver Davies 2025-04-05 09:00:00 +01:00
parent 6443b72707
commit d8e352a0a4
4 changed files with 1 additions and 21 deletions

View file

@ -18,7 +18,6 @@
nixosModules = {
dwm.enable = true;
gaming.enable = true;
redshift.enable = true;
st.enable = true;
thunar.enable = true;
@ -59,6 +58,7 @@
sxiv
ttyper
yt-dlp
zeroad
];
zramSwap.enable = true;

View file

@ -15,7 +15,6 @@
nixosModules = {
dwm.enable = true;
gaming.enable = true;
redshift.enable = true;
st.enable = true;
thunar.enable = true;

View file

@ -1,7 +1,6 @@
{
imports = [
./desktop
./gaming.nix
./homelab
./fonts.nix
./xbanish.nix

View file

@ -1,18 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib;
{
options.nixosModules.gaming.enable = mkEnableOption "Enable games";
config = mkIf config.nixosModules.gaming.enable {
programs.steam.enable = true;
environment.systemPackages = with pkgs; [ zeroad ];
};
}