From c27cc9ebc34d2a8ba12102e4f3ac59822e1e878f Mon Sep 17 00:00:00 2001 From: wo2wz <189177184+wo2wz@users.noreply.github.com> Date: Sun, 26 Oct 2025 20:56:35 -0400 Subject: [PATCH] Gutterman: install additional programs --- hosts/Gutterman/default.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/hosts/Gutterman/default.nix b/hosts/Gutterman/default.nix index 225fd7b..57accd8 100644 --- a/hosts/Gutterman/default.nix +++ b/hosts/Gutterman/default.nix @@ -1,4 +1,4 @@ -{ config, modulesPath, lib, ... }: +{ inputs, config, modulesPath, lib, pkgs, ... }: { imports = [ @@ -29,6 +29,19 @@ CacheFromLocalhost=true ''; + environment.systemPackages = + let + nixpkgs-unstable = import inputs.nixpkgs-unstable { + system = "${pkgs.system}"; + config.allowUnfree = true; + }; + in [ + pkgs.btop + nixpkgs-unstable.graalvmPackages.graalvm-oracle_17 + inputs.nixpkgs-pin.legacyPackages.${pkgs.system}.graalvm-ce + pkgs.steamcmd + ]; + nixpkgs.hostPlatform = "x86_64-linux"; system.stateVersion = "25.05"; } \ No newline at end of file