diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-06-03 21:15:48 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-06-03 21:15:48 -0500 |
commit | 6ec824b45ba8443ea5f3e39bc87a717d0e030970 (patch) | |
tree | 4e5179ffdaf42317ffd0fc3b8f0566679890d71c /hosts | |
parent | 830a0d0418c8e9baf59f8c05a063275d58c097fa (diff) | |
download | nixos-config-6ec824b45ba8443ea5f3e39bc87a717d0e030970.tar.gz nixos-config-6ec824b45ba8443ea5f3e39bc87a717d0e030970.zip |
hosts/tomato: Install more packages
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/tomato/packages.nix | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/hosts/tomato/packages.nix b/hosts/tomato/packages.nix index b4c4ba4..c22f316 100644 --- a/hosts/tomato/packages.nix +++ b/hosts/tomato/packages.nix @@ -1,5 +1,9 @@ -{ pkgs, ... }: +{ pkgs, inputs ... }: +let + blender-bin = inputs.blender-bin. + packages.x86_64-linux; +in { this.sets = { arch.tools = true; @@ -36,5 +40,17 @@ emacsPackages.mu4e isync ppsspp + wesnoth + luanti + superTuxKart + teeworlds + bzflag + gzdoom + mgba + mindustry + shattered-pixel-dungeon + taisei + xonotic-glx + blender-bin.blender_3_6 ]; } |