2024-01-08 16:28:12 +01:00
|
|
|
{
|
2024-12-02 20:44:03 +01:00
|
|
|
fileSystems."/boot" = {
|
|
|
|
device = "/dev/disk/by-label/BOOT";
|
|
|
|
fsType = "vfat";
|
|
|
|
};
|
2024-01-08 16:28:12 +01:00
|
|
|
|
2024-12-03 01:16:25 +01:00
|
|
|
fileSystems."/" = {
|
2024-12-02 20:44:03 +01:00
|
|
|
device = "/dev/disk/by-label/NIXOS";
|
2024-12-03 00:28:51 +01:00
|
|
|
fsType = "ext4";
|
2024-12-03 01:16:25 +01:00
|
|
|
options = ["noatime"];
|
2024-12-02 20:44:03 +01:00
|
|
|
};
|
2024-01-08 16:28:12 +01:00
|
|
|
|
2024-12-03 01:11:03 +01:00
|
|
|
swapDevices = [
|
|
|
|
{
|
|
|
|
device = "/dev/disk/by-id/mmc-USD00_0x66b39865-part2";
|
|
|
|
}
|
|
|
|
];
|
2024-01-08 16:28:12 +01:00
|
|
|
}
|