aboutsummaryrefslogtreecommitdiff
path: root/hosts/herra/file-system.nix
blob: 71a77fdf7fba2508fa5237eb1cf229f5da3d33a3 (plain)
1
2
3
4
5
6
7
{...}: {
  fileSystems."/nix" = {
  device = "/dev/disk/by-label/nixstore";
  fsType = "btrfs";
  options = [ "subvol=@nix" "compress=zstd:3" "noatime" ];
};
}