2023-05-18 16:11:26 +05:30
|
|
|
{...}: {
|
2023-04-10 23:07:41 +05:30
|
|
|
fileSystems."/" = {
|
2023-04-15 22:35:39 +05:30
|
|
|
device = "/dev/disk/by-partlabel/NIXOS_ROOT";
|
|
|
|
fsType = "btrfs";
|
2023-05-18 16:11:26 +05:30
|
|
|
options = ["noatime" "compress=zstd"];
|
2023-04-15 22:35:39 +05:30
|
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
|
|
device = "/dev/disk/by-partlabel/ESP";
|
|
|
|
fsType = "vfat";
|
2023-04-10 23:07:41 +05:30
|
|
|
};
|
|
|
|
}
|