about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorAspen Smith <root@gws.fyi>2024-03-31T18·18-0400
committerclbot <clbot@tvl.fyi>2024-03-31T18·49+0000
commit0f5954015879f8346b9bf51ca5f7913c867716f7 (patch)
treec3178a9d165418ab350994d28407583b0b116e75 /users
parent4cfbf8fa34650cbbfc0f97ab9b14d078081aae07 (diff)
chore(aspen/system): Don't install xonotic on every system r/7820
Change-Id: I664f97b2321625482ef64218b51c93ba28599643
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11309
Autosubmit: aspen <root@gws.fyi>
Reviewed-by: aspen <root@gws.fyi>
Tested-by: BuildkiteCI
Diffstat (limited to 'users')
-rw-r--r--users/aspen/system/home/modules/games.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/users/aspen/system/home/modules/games.nix b/users/aspen/system/home/modules/games.nix
index 5e28003892..b7653bb058 100644
--- a/users/aspen/system/home/modules/games.nix
+++ b/users/aspen/system/home/modules/games.nix
@@ -46,16 +46,6 @@ let
 
 in
 mkMerge [
-  {
-    home.packages = [
-      crawl
-      xonotic
-    ];
-  }
-  (mkIf stdenv.isLinux {
-    home.packages = [
-      df
-      prismlauncher
-    ];
-  })
+  { home.packages = [ crawl ]; }
+  (mkIf stdenv.isLinux { home.packages = [ df prismlauncher ]; })
 ]