diff --git a/hosts/vulpecula/configuration.nix b/hosts/vulpecula/configuration.nix index 5237bbe..b8c4803 100644 --- a/hosts/vulpecula/configuration.nix +++ b/hosts/vulpecula/configuration.nix @@ -81,10 +81,20 @@ boot.loader.grub.device = "/dev/sda"; + users.users.tasia = { + isNormalUser = true; + description = "Tasia"; + extraGroups = ["networkmanager" "wheel" "dialout"]; + initialPassword = "correcthorsebatterystaple"; + openssh.authorizedKeys.keys = [ + sshKeys.tasia.yaseen + ]; + }; + boot.tmp.cleanOnBoot = true; zramSwap.enable = true; networking.domain = ""; services.openssh.enable = true; - users.users.root.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILLyDLtqUhEQwIsPx0XgQ9OJb2+XxL+2ra4goNJEgwf0 tasia@yaseen'' ]; + # users.users.root.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILLyDLtqUhEQwIsPx0XgQ9OJb2+XxL+2ra4goNJEgwf0 tasia@yaseen'' ]; system.stateVersion = "24.05"; }