diff --git a/common/generic.nix b/common/generic.nix index fc05f0b..eff0ce6 100644 --- a/common/generic.nix +++ b/common/generic.nix @@ -31,6 +31,8 @@ shell = pkgs.fish; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKGLHqRBcN584SXXa7snrOs89Wy5Jjvsq+GlFXTTBYfp ash@ash-pc" + "sk-ecdsa-sha2-nistp256@openssh.com AAAAInNrLWVjZHNhLXNoYTItbmlzdHAyNTZAb3BlbnNzaC5jb20AAAAIbmlzdHAyNTYAAABBBKx0GvYviMXBGtGN/V3t0uPkT6tmpQhtGbd1GzDoNe75K9ZorsrZaBbJBjg39yCVMkWnWjWYGd7R7GcV3fKeLGoAAAAEc3NoOg== ash@fern" + "sk-ecdsa-sha2-nistp256@openssh.com AAAAInNrLWVjZHNhLXNoYTItbmlzdHAyNTZAb3BlbnNzaC5jb20AAAAIbmlzdHAyNTYAAABBBGnb4PwF+hL21JY0ytFpkk/WaYM19Xv9efYQGdeba5a2RcElFKoEtklU4SUh+uhwaOz4TP3lWJUMEnfDDpFnmlwAAAAEc3NoOg== ash@alex" ]; hashedPassword = "$y$j9T$YZw49GYsZi6pm5MH3W2gX1$BKPBL3g4jAWUJP0WY0lRrBLorxzcENVqGTG0dAly3v7"; extraGroups = [ "wheel" "audio" "dialout" "adbusers" ]; diff --git a/hosts/lea/configuration.nix b/hosts/lea/configuration.nix index c061b99..f9179b9 100644 --- a/hosts/lea/configuration.nix +++ b/hosts/lea/configuration.nix @@ -33,12 +33,7 @@ nix.settings.trusted-users = [ "@wheel" ]; - users.users.ash = { - isNormalUser = true; - description = "Ashley"; - extraGroups = [ "networkmanager" "wheel" ]; - packages = with pkgs; []; - }; + users.users.ash.extraGroups = [ "networkmanager" ]; nixpkgs.config.allowUnfree = true;