diff --git a/hosts/yevaud/configuration.nix b/hosts/yevaud/configuration.nix index 89f7bd0..2801080 100644 --- a/hosts/yevaud/configuration.nix +++ b/hosts/yevaud/configuration.nix @@ -14,7 +14,7 @@ time.timeZone = "Etc/UTC"; - users.users.bluebird = { + users.users.qenya = { isNormalUser = true; extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. openssh.authorizedKeys.keys = [ @@ -32,7 +32,7 @@ # Allow remote root login only from home network # TODO: Find a less hacky way of doing remote deployment - users.users.root.openssh.authorizedKeys.keys = config.users.users.bluebird.openssh.authorizedKeys.keys; + users.users.root.openssh.authorizedKeys.keys = config.users.users.qenya.openssh.authorizedKeys.keys; services.openssh.extraConfig = "Match Address 45.14.17.200\n PermitRootLogin prohibit-password"; networking.firewall.allowedTCPPorts = [ 22 80 443 ];