Gutterman: install additional programs

This commit is contained in:
wo2wz 2025-10-26 20:56:35 -04:00
parent 0618884337
commit c27cc9ebc3

View file

@ -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";
}