From 33698a500cf9579d355b063cdf668bb66b64fe10 Mon Sep 17 00:00:00 2001 From: Benson Chu Date: Fri, 10 Jan 2025 20:49:39 -0600 Subject: [PATCH] creating new user "peter", the clean slate --- configuration.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 9ab2e7e..e23e784 100644 --- a/configuration.nix +++ b/configuration.nix @@ -86,10 +86,10 @@ in }; displayManager = { - defaultSession = "plasmawayland"; + defaultSession = "mate"; autoLogin = { enable = true; - user = "hodgson"; + user = "peter"; }; }; @@ -162,6 +162,14 @@ in }; users.users.hodgson = { + isNormalUser = true; + shell = pkgs.zsh; + description = "[Ralph] Peter Hodgson"; + extraGroups = [ "lp" "wheel" ]; + openssh.authorizedKeys.keys = keys.hodgson; + }; + + users.users.peter = { isNormalUser = true; shell = pkgs.zsh; description = "Peter Hodgson";