11 lines
193 B
Nix
11 lines
193 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|