Variablize username more
This commit is contained in:
parent
33236aedc6
commit
ea3a6db5af
39 changed files with 93 additions and 102 deletions
|
@ -5,6 +5,7 @@
|
|||
./domains
|
||||
./ips
|
||||
./look
|
||||
./users
|
||||
./workspaces
|
||||
];
|
||||
}
|
||||
|
|
11
modules/extras/variables/users/default.nix
Normal file
11
modules/extras/variables/users/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ lib, config, ... }:
|
||||
{
|
||||
options.sysusers = lib.mkOption {
|
||||
type = lib.types.attrs;
|
||||
default = {};
|
||||
};
|
||||
|
||||
config.sysusers = {
|
||||
main = "jimbo";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue