11 lines
222 B
Nix
11 lines
222 B
Nix
{ lib, ... }:
|
|
{
|
|
# Replace this file with the generated hardware config from the target host.
|
|
fileSystems."/" = lib.mkDefault {
|
|
device = "/dev/disk/by-label/nixos";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
swapDevices = [ ];
|
|
}
|