summaryrefslogtreecommitdiff
path: root/users/seth/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/default.nix')
-rw-r--r--users/seth/default.nix9
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
];