configuration.nix/hosts/rico2/hardware/filesystem.nix
2023-07-11 22:41:18 +05:30

11 lines
244 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";
};
}