aboutsummaryrefslogtreecommitdiff
path: root/modules/user/options.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-12-20 07:49:56 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-12-20 07:53:22 -0600
commit70f702c6fd33454aebc4a266789fc5bf7e77e960 (patch)
treeafd021e65acab4ed2cde532b3eb914bfc6cb9ff9 /modules/user/options.nix
parent26533470d5eebca67519c0a0ce797bedfb6a5e25 (diff)
age + other various changes
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;