diff options
| author | Ophestra <cat@gensokyo.uk> | 2024-12-29 23:23:11 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2024-12-29 23:23:11 +0900 |
| commit | 56a73bb019ef807e11ed99bb1e89f032e7a1f393 (patch) | |
| tree | dbd0641efb6ee341720f2e44a8b0cd44e3f45ccf | |
| parent | fb8abf63db8367efce11db6f2ccf4b7775553e0f (diff) | |
nix: create nixpkgs symlink
This is included as part of the system as nixGL needs to be built somewhere between activation and start.
Signed-off-by: Ophestra <cat@gensokyo.uk>
| -rw-r--r-- | bundle.nix | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -66,7 +66,10 @@ let extraNixOSConfig = { pkgs, ... }: { - environment.systemPackages = [ pkgs.nix ]; + environment = { + etc.nixpkgs.source = nixpkgs.outPath; + systemPackages = [ pkgs.nix ]; + }; }; nixos = nixpkgs.lib.nixosSystem { inherit system; |
