2025-01-13 11:52:09 +08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
2024-01-07 22:01:31 +08:00
|
|
|
cfg = config.global.fs;
|
2025-01-13 11:52:09 +08:00
|
|
|
in
|
|
|
|
mkIf (cfg.type == "xfs") {
|
2024-01-02 14:49:06 +08:00
|
|
|
# NOTE: -m reflink=1
|
2025-01-13 11:52:09 +08:00
|
|
|
fileSystems."/nix" = {
|
|
|
|
device = "/dev/disk/by-uuid/${cfg.store}";
|
2024-01-02 14:49:06 +08:00
|
|
|
fsType = "xfs";
|
2024-01-20 12:35:48 +08:00
|
|
|
options = [ "noatime" ];
|
2024-01-02 14:49:06 +08:00
|
|
|
};
|
|
|
|
}
|