Skip to content

Commit

Permalink
fix: nix version in bootstrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
blaggacao committed Mar 30, 2022
1 parent a41984a commit 873ae18
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion comb/_QUEEN/nixosProfiles.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,21 @@
inputs,
cell,
}: let
inherit (inputs) nixpkgs;
inherit (inputs) nixpkgs iog-patched-nix;
in {
bootstrap = {
config,
lib,
modulesPath,
...
}: {
nix = {
package = iog-patched-nix.packages.nix;
extraOptions = ''
experimental-features = nix-command flakes recursive-nix
'';
};

networking.domain = "local";

imports = ["${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"];
Expand Down

0 comments on commit 873ae18

Please sign in to comment.