nixfleet/hosts/rock5b/hardware-configuration.nix
Andrea Ciceri f05ee0a658
Started migration towards flake-parts
Plus shit ton many changes I still had to commit
2023-03-12 17:05:03 +01:00

17 lines
291 B
Nix

{lib, ...}: {
fileSystems = {
"/" = {
device = "/dev/disk/by-label/NIXOS_ROOTFS";
fsType = "ext4";
};
};
nixpkgs.hostPlatform = "aarch64-linux";
swapDevices = [];
boot.loader = {
grub.enable = false;
generic-extlinux-compatible.enable = true;
};
}