From 1fd0100b3cb84df519c062add011e1ebb8252394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Tue, 20 Aug 2024 01:16:36 -0300 Subject: [PATCH] add user davikiwi --- hosts/phantom/users.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/hosts/phantom/users.nix b/hosts/phantom/users.nix index 6291321..493f913 100644 --- a/hosts/phantom/users.nix +++ b/hosts/phantom/users.nix @@ -40,6 +40,23 @@ ]; initialHashedPassword = "$y$j9T$E3aBBSSq0Gma8hZD9L7ov0$iCGDW4fqrXWfHO0qodBYYgMFA9CpIraoklHcPbJJrM3"; }; + + users.users.davikiwi = { + isNormalUser = true; + description = "Davi"; + hashedPassword = "$y$j9T$0e/rczjOVCy7PuwC3pG0V/$gTHZhfO4wQSlFvbDyfghbCnGI2uDI0a52zSrQ/yOA5A"; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGgZDBnj+gVMHqoNvjpx2T/HqnxUDbLPshu+t7301gXd Davi@DESKTOP-EVHFGJ9" + ]; + extraGroups = [ "docker" ]; + packages = with pkgs; [ + (pkgs.python3.withPackages (python-pkgs: [ + python-pkgs.pip + python-pkgs.wheel + ])) + ]; + }; + security.sudo.wheelNeedsPassword = false; programs.fish.enable = true;