nixos-config/nixos/system/settings/user.nix
2024-12-26 21:03:34 +01:00

13 lines
371 B
Nix

{userSettings, ...}: {
# User configuration
users.users.${userSettings.username} = {
isNormalUser = true;
description = "${userSettings.username}";
extraGroups = ["wheel"];
#! hashedPasswordFile = "password-hash";
#! User Hashed password is stored in SOPS
#! and is set in the module configuration
#! file ../packages/sops/sops.nix
};
}