mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
12 lines
280 B
Nix
12 lines
280 B
Nix
|
{ modulesPath, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
"${modulesPath}/profiles/installation-device.nix"
|
||
|
./sd-image.nix
|
||
|
];
|
||
|
|
||
|
# The installation media is also the installation target,
|
||
|
# so we don't want to provide the installation configuration.nix.
|
||
|
installer.cloneConfig = false;
|
||
|
}
|