This commit is contained in:
2026-02-13 13:51:50 -06:00
parent efb8a6efe5
commit dfc99c1298
2 changed files with 12 additions and 1 deletions

View File

@@ -70,7 +70,7 @@ flake.nixosModules.lily-desktop = { pkgs, ... }: {
vim
wget
home-manager
];
] ++ [ self.packages.${pkgs.stdenv.hostPlatform.system}.nh ];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.

View File

@@ -0,0 +1,11 @@
{ inputs, ...}:{
perSystem = { pkgs, ... }:{
packages.nh = inputs.wrappers.lib.wrapPackage {
inherit pkgs;
package = pkgs.nh;
env = {
"NH_FLAKE" = "/home/lily/Programming/LiNix";
};
};
};
}