blob: 6ab5c7d089f4c434d3ccaa812736fab906309b86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ lib, ... }: {
description = "static-users";
endOfLife = null;
options.users = lib.mkOption {
type = lib.types.attrsOf (lib.types.submodule {
options.publicKeyFile = lib.mkOption {
type = lib.types.path;
};
});
default = { };
};
}
|