From 17e152cecbc8a51c4146e99cea5b046f89198587 Mon Sep 17 00:00:00 2001 From: Thilo Hohlt <123883702+thiloho@users.noreply.github.com> Date: Fri, 4 Aug 2023 10:30:07 +0200 Subject: [PATCH] Update default.nix --- nixos-configurations/server/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/nixos-configurations/server/default.nix b/nixos-configurations/server/default.nix index 1c72c29..5b9f421 100644 --- a/nixos-configurations/server/default.nix +++ b/nixos-configurations/server/default.nix @@ -29,9 +29,7 @@ white-list = true; }; }; - openssh = { - enable = true; - }; + openssh.enable = true; nginx = { enable = true; virtualHosts = { @@ -55,7 +53,7 @@ }; users.users.thiloho.openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAy1KnXinQJNcGpWTe1jifNuUEfKZRmyshVX5fPEWR19 thiloho@pc" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH22p7+RCaEYZjxWzZ3SE9byCkqfT9SPq7Ht47XmCM9s thiloho@ThilosPC" ]; home-manager.users.thiloho = { pkgs, lib, ... }: {