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

12 lines
246 B
Nix
Raw Normal View History

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