From 5d596e22964648ce3dfe27015419a2cf7d69aa91 Mon Sep 17 00:00:00 2001 From: xenia Date: Fri, 4 Oct 2024 21:33:31 +0200 Subject: [PATCH] Add prismlauncher and renoise to foxhut --- flake.nix | 2 +- nixos/machines/foxhut/boot.nix | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 5ebed9d5..e4fa9f8d 100644 --- a/flake.nix +++ b/flake.nix @@ -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 diff --git a/nixos/machines/foxhut/boot.nix b/nixos/machines/foxhut/boot.nix index 5345ac77..af8b12c8 100644 --- a/nixos/machines/foxhut/boot.nix +++ b/nixos/machines/foxhut/boot.nix @@ -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 + ]); }