diff options
author | Aspen Smith <root@gws.fyi> | 2024-03-31T18·18-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-03-31T18·49+0000 |
commit | 0f5954015879f8346b9bf51ca5f7913c867716f7 (patch) | |
tree | c3178a9d165418ab350994d28407583b0b116e75 | |
parent | 4cfbf8fa34650cbbfc0f97ab9b14d078081aae07 (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
-rw-r--r-- | users/aspen/system/home/modules/games.nix | 14 |
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 5e2800389208..b7653bb058d6 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 ]; }) ] |