nixos/global/fs/xfs.nix

12 lines
214 B
Nix
Raw Normal View History

{ lib
, config
, ... }: with lib; let
2024-01-07 22:01:31 +08:00
cfg = config.global.fs;
in mkIf (cfg.type == "xfs") {
# NOTE: -m reflink=1
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/${cfg.store}";
fsType = "xfs";
};
}