iso: copy devShell storepath to iso
This avoids for the live nixos on the iso to rebuild the devshell upon entering it.
This commit is contained in:
parent
17aee57df4
commit
8e3777ff34
|
@ -18,6 +18,9 @@ lib.nixosSystem (args // {
|
|||
target = "/devos/";
|
||||
}];
|
||||
nix.registry = lib.mapAttrs (n: v: { flake = v; }) inputs;
|
||||
isoImage.storeContents = [
|
||||
self.devShell.${config.nixpkgs.system}
|
||||
];
|
||||
# confilcts with networking.wireless which might be slightly
|
||||
# more useful on a stick
|
||||
networking.networkmanager.enable = lib.mkForce false;
|
||||
|
|
Loading…
Reference in a new issue