Gutterman: install additional programs
This commit is contained in:
parent
0618884337
commit
c27cc9ebc3
1 changed files with 14 additions and 1 deletions
|
|
@ -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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue