nixos/global/fs/xfs.nix
2025-01-13 11:52:09 +08:00

18 lines
249 B
Nix

{
lib,
config,
...
}:
with lib;
let
cfg = config.global.fs;
in
mkIf (cfg.type == "xfs") {
# NOTE: -m reflink=1
fileSystems."/nix" = {
device = "/dev/disk/by-uuid/${cfg.store}";
fsType = "xfs";
options = [ "noatime" ];
};
}