nixfleet/hosts/rock5b/hardware-configuration.nix
2022-12-28 17:26:53 +01:00

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;
};
}