fix(fs): add missing fs options
This commit is contained in:
parent
189eabe42c
commit
4ba694da03
|
@ -37,6 +37,10 @@ in {
|
||||||
type = with types; str;
|
type = with types; str;
|
||||||
description = "UUID of secret filesystem";
|
description = "UUID of secret filesystem";
|
||||||
};
|
};
|
||||||
|
store = mkOption {
|
||||||
|
type = with types; str;
|
||||||
|
description = "UUID of store filesystem";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ in mkIf cfg.enable {
|
||||||
PROGRAM ${cfg.mdProg}
|
PROGRAM ${cfg.mdProg}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# secret filesystem backed by LUKS on swraid
|
# secret filesystem backed by swraid
|
||||||
fileSystems."/nix/var/secret" =
|
fileSystems."/nix/var/secret" =
|
||||||
{ device = "/dev/disk/by-uuid/${cfg.secret}";
|
{ device = "/dev/disk/by-uuid/${cfg.secret}";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
|
@ -22,6 +22,14 @@ in mkIf cfg.enable {
|
||||||
depends = [ "/nix/var" ];
|
depends = [ "/nix/var" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# external store backed by swraid
|
||||||
|
global.fs = {
|
||||||
|
zfs.externalStore = mkDefault true;
|
||||||
|
external.device = "/dev/disk/by-uuid/${cfg.store}";
|
||||||
|
external.fsType = "xfs";
|
||||||
|
external.options = [ "noatime" ];
|
||||||
|
};
|
||||||
|
|
||||||
# import system state pool after encrypted filesystems become available for key loading
|
# import system state pool after encrypted filesystems become available for key loading
|
||||||
boot.initrd.systemd.services."zfs-import-${config.global.fs.store}".after = [ "cryptsetup.target" ];
|
boot.initrd.systemd.services."zfs-import-${config.global.fs.store}".after = [ "cryptsetup.target" ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue