3
0
Fork 0
forked from mirrors/nixpkgs

sd-image.nix: set installer.cloneConfig to false

As SD Card images are both installation media and installation target,
don't copy over a /etc/nixos/configuration.nix

Closes #63576.
This commit is contained in:
Florian Klink 2019-08-17 23:57:52 +02:00
parent f71fd79ff0
commit 0aa5e3165c

View file

@ -194,5 +194,9 @@ in
rm -f /nix-path-registration
fi
'';
# the installation media is also the installation target,
# so we don't want to provide the installation configuration.nix.
installer.cloneConfig = false;
};
}