Add prismlauncher and renoise to foxhut

This commit is contained in:
xenia 2024-10-04 21:33:31 +02:00
parent e0edef2e30
commit 5d596e2296
2 changed files with 8 additions and 2 deletions

View File

@ -218,7 +218,7 @@
modules = [
nixos-apple-silicon.nixosModules.apple-silicon-support
./nixos/machines/foxhut/hardware.nix
(import ./nixos/machines/foxhut/boot.nix { inherit pkgs asahi-firmware; })
(import ./nixos/machines/foxhut/boot.nix { inherit pkgs pkgs-unstable asahi-firmware; })
base
networking
graphical

View File

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ pkgs, asahi-firmware, ... }:
{ pkgs, pkgs-unstable, asahi-firmware, ... }:
{ config, ... }:
{
@ -27,5 +27,11 @@
device = "/swap";
size = 16 * 1024; # 16GB
}];
environment.systemPackages = (with pkgs-unstable; [
renoise
]) ++ (with pkgs; [
prismlauncher
]);
}