remove deprecated types.loaOf
This commit is contained in:
parent
4008d0cb53
commit
e2ed4541d4
16
default.nix
16
default.nix
|
@ -47,7 +47,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
loginAccounts = mkOption {
|
loginAccounts = mkOption {
|
||||||
type = types.loaOf (types.submodule ({ name, ... }: {
|
type = types.attrsOf (types.submodule ({ name, ... }: {
|
||||||
options = {
|
options = {
|
||||||
name = mkOption {
|
name = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
|
@ -193,14 +193,12 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
extraVirtualAliases = mkOption {
|
extraVirtualAliases = mkOption {
|
||||||
type = types.loaOf (mkOptionType {
|
type = let
|
||||||
name = "Login Account";
|
loginAccount = mkOptionType {
|
||||||
check = (ele:
|
name = "Login Account";
|
||||||
let accounts = builtins.attrNames cfg.loginAccounts;
|
check = (account: builtins.elem account (builtins.attrNames cfg.loginAccounts));
|
||||||
in if (builtins.isList ele)
|
};
|
||||||
then (builtins.all (x: builtins.elem x accounts) ele) && (builtins.length ele > 0)
|
in with types; attrsOf (either loginAccount (nonEmptyListOf loginAccount));
|
||||||
else (builtins.elem ele accounts));
|
|
||||||
});
|
|
||||||
example = {
|
example = {
|
||||||
"info@example.com" = "user1@example.com";
|
"info@example.com" = "user1@example.com";
|
||||||
"postmaster@example.com" = "user1@example.com";
|
"postmaster@example.com" = "user1@example.com";
|
||||||
|
|
Loading…
Reference in New Issue