configuration.nix/hosts/rico2/hardware/filesystem.nix

12 lines
244 B
Nix
Raw Normal View History

2023-07-11 22:41:18 +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
};
}