summaryrefslogtreecommitdiff
path: root/modules/nixos/server/host-user.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/server/host-user.nix')
-rw-r--r--modules/nixos/server/host-user.nix20
1 files changed, 11 insertions, 9 deletions
diff --git a/modules/nixos/server/host-user.nix b/modules/nixos/server/host-user.nix
index 5aa1ce5..8b76e9d 100644
--- a/modules/nixos/server/host-user.nix
+++ b/modules/nixos/server/host-user.nix
@@ -3,18 +3,20 @@
lib,
secretsDir,
...
-}: let
+}:
+let
cfg = config.server.hostUser;
inherit (config.networking) hostName;
-in {
+in
+{
options.server.hostUser = {
- enable = lib.mkEnableOption "${hostName} user configuration" // {default = config.server.enable;};
+ enable = lib.mkEnableOption "${hostName} user configuration" // {
+ default = config.server.enable;
+ };
- manageSecrets =
- lib.mkEnableOption "automatic secrets management"
- // {
- default = config.traits.secrets.enable;
- };
+ manageSecrets = lib.mkEnableOption "automatic secrets management" // {
+ default = config.traits.secrets.enable;
+ };
};
config = lib.mkIf cfg.enable (
@@ -22,7 +24,7 @@ in {
{
users.users.${hostName} = {
isNormalUser = true;
- extraGroups = ["wheel"];
+ extraGroups = [ "wheel" ];
};
}