nixos/global/fs/ext4.nix

12 lines
222 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 == "ext4") {
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/${cfg.store}";
fsType = "ext4";
2024-01-20 12:35:48 +08:00
options = [ "noatime" ];
};
}