12 lines
253 B
Nix
12 lines
253 B
Nix
{ ... }: {
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-partlabel/NIXOS_ROOT";
|
|
fsType = "btrfs";
|
|
options = [ "noatime" "compress=zstd" ];
|
|
};
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-partlabel/ESP";
|
|
fsType = "vfat";
|
|
};
|
|
}
|