14 lines
313 B
Nix
14 lines
313 B
Nix
# TODO: Copy paste after install nixos, this should include `hardware-configuration.nix`s contents
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/bazqux";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/foobar";
|
|
fsType = "vfat";
|
|
};
|
|
}
|