diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-01-09 17:49:36 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-01-09 17:49:36 -0600 |
| commit | c3b32d03ff5860ecca99a993af31186d8c36011f (patch) | |
| tree | 0ebf9e2db009742702dc8f074d195aea3b882e88 /env | |
| parent | de4035c51faccf30c07e9d076738cd595971dc54 (diff) | |
env/users: add option for disabling user login
Diffstat (limited to 'env')
| -rw-r--r-- | env/users/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/env/users/default.nix b/env/users/default.nix index fed8906..f490d9a 100644 --- a/env/users/default.nix +++ b/env/users/default.nix @@ -22,6 +22,11 @@ with lib; { default = [ ]; }; + allowLogin = mkOption { + type = bool; + default = true; + }; + hardAliases = mkOption { type = listOf str; default = [ ]; |
