nixos/global/fs/f2fs.nix

11 lines
193 B
Nix
Raw Normal View History

2024-01-09 13:17:47 +08:00
{ lib
, config
, ... }: with lib; let
cfg = config.global.fs;
in mkIf (cfg.type == "f2fs") {
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/${cfg.store}";
fsType = "f2fs";
};
}