Force copying of Linux users to Windows

This commit is contained in:
Manuel Thalmann 2024-08-19 00:54:13 +02:00
parent c2a8a5e8ef
commit a61c8c92b4

View file

@ -91,7 +91,12 @@
windows.users = mkOption {
type = types.attrsOf winUserType;
description = "The users to create on the Windows machine.";
default = (lib.attrsets.concatMapAttrs (
};
};
};
config = {
valhalla.windows.users = (lib.attrsets.concatMapAttrs (
name: options:
if builtins.elem name (builtins.attrNames linuxOptions)
then {}
@ -108,6 +113,4 @@
};
}) cfg.users);
};
};
};
}