15 lines
248 B
Nix
15 lines
248 B
Nix
{lib, ...}: {
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "/dev/disk/by-label/NIXOS_ROOTFS";
|
|
fsType = "ext4";
|
|
};
|
|
};
|
|
|
|
swapDevices = [];
|
|
|
|
boot.loader = {
|
|
grub.enable = false;
|
|
generic-extlinux-compatible.enable = true;
|
|
};
|
|
}
|