configuration.nix/hosts/rico1/hardware/filesystem.nix

12 lines
244 B
Nix
Raw Normal View History

2023-08-15 13:06:06 +05:30
_: {
fileSystems."/" = {
device = "/dev/disk/by-partlabel/NIXOS_ROOT";
fsType = "btrfs";
options = ["noatime" "compress=zstd"];
};
fileSystems."/boot" = {
device = "/dev/disk/by-partlabel/ESP";
fsType = "vfat";
};
}