summaryrefslogtreecommitdiff
path: root/env/users
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-01-09 17:49:36 -0600
committerAlejandro Soto <alejandro@34project.org>2023-01-09 17:49:36 -0600
commitc3b32d03ff5860ecca99a993af31186d8c36011f (patch)
tree0ebf9e2db009742702dc8f074d195aea3b882e88 /env/users
parentde4035c51faccf30c07e9d076738cd595971dc54 (diff)
env/users: add option for disabling user login
Diffstat (limited to 'env/users')
-rw-r--r--env/users/default.nix5
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 = [ ];