aboutsummaryrefslogtreecommitdiff
path: root/modules/user/options.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/user/options.nix')
-rw-r--r--modules/user/options.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/modules/user/options.nix b/modules/user/options.nix
index f5c7a5f..1024494 100644
--- a/modules/user/options.nix
+++ b/modules/user/options.nix
@@ -1,8 +1,4 @@
-{
- config,
- lib,
- ...
-}: let
+{lib, ...}: let
inherit (lib) mkOption types;
in {
options = {
@@ -10,10 +6,6 @@ in {
name = mkOption {
type = types.str;
};
- password = mkOption {
- type = types.str;
- description = "hashed password for user";
- };
isAdmin = mkOption {
type = types.bool;
default = true;