configuration.nix/hosts/rico0/hardware/filesystem.nix

12 lines
246 B
Nix
Raw Normal View History

2024-01-04 21:51:15 +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";
};
}