diff options
| -rw-r--r-- | configuration/configuration.nix | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/configuration/configuration.nix b/configuration/configuration.nix index 74a603e..ddac03b 100644 --- a/configuration/configuration.nix +++ b/configuration/configuration.nix @@ -21,9 +21,19 @@ time.timeZone = "Europe/Berlin"; i18n.defaultLocale = "en_US.UTF-8"; - users.users.mel = { - isNormalUser = true; - extraGroups = [ "wheel" ]; + users.mutableUsers = false; + users.users = { + mel = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + hashedPassword = "$y$j9T$ieEl5QNLNw/WwPlo8ltbW0$gFxLCTnPgalTvyEbElxrhSH49wrAOUAdjdVjw1NLtsC"; + }; + + philip = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + hashedPassword = "$y$j9T$05voM5wlmF6HSrvOJ4Jtn1$fhAq/k2W6NYydFcwK/LiKGrRz/1NLM7MRUAGNrzy2e/"; + }; }; environment.systemPackages = with pkgs; [ |
