diff options
| author | seth <[email protected]> | 2023-01-26 06:08:41 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-01-26 06:08:41 -0500 |
| commit | 08895833e51bdfd760f2b4915a3997c13fe65b13 (patch) | |
| tree | 76e0ec29dea51c9a0aa0502cf8e87eadc71dd3ec /users/seth/default.nix | |
| parent | 43bf016d0fb5b3b2db796fdc37abf243f1223df1 (diff) | |
more refactoring
Diffstat (limited to 'users/seth/default.nix')
| -rw-r--r-- | users/seth/default.nix | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/users/seth/default.nix b/users/seth/default.nix index e53b125..4c40386 100644 --- a/users/seth/default.nix +++ b/users/seth/default.nix @@ -1,21 +1,16 @@ { config, pkgs, - modulesPath, ... }: { - imports = [ - "${modulesPath}/profiles/minimal.nix" - ]; - - users.users.seth = { + config.users.users.seth = { extraGroups = ["wheel"]; isNormalUser = true; hashedPassword = "***REMOVED***"; shell = pkgs.zsh; }; - home-manager.users.seth = { + config.home-manager.users.seth = { imports = [ ./config.nix ]; |
