NixOS-Config/nixos/hosts/wheatley/hardware-configuration.nix

19 lines
356 B
Nix

{
fileSystems."/boot" = {
device = "/dev/disk/by-path/platform-fe340000.mmc-part1";
fsType = "vfat";
};
fileSystems."/" = {
device = "/dev/disk/by-path/platform-fe340000.mmc-part3";
fsType = "ext4";
options = ["noatime"];
};
swapDevices = [
{
device = "/dev/disk/by-path/platform-fe340000.mmc-part2";
}
];
}