From e7423aff207f36ab2b7c132c3440dfa8227435ee Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 8 Sep 2024 10:42:10 +0100 Subject: [PATCH] Add prusa-slicer to Northstar --- system/Northstar.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/system/Northstar.nix b/system/Northstar.nix index 003f39f5..fce57a1e 100644 --- a/system/Northstar.nix +++ b/system/Northstar.nix @@ -1,4 +1,8 @@ -{ ... }: +{ pkgs, username, ... }: { imports = [ ./laptop.nix ]; + home-manager.users.${username} = { + home.packages = [ pkgs.prusa-slicer ]; + }; + hardware.amdgpu.initrd.enable = true; }