From 342bb03515d017345a10453c4d42d4415f45957b Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 21 Apr 2024 19:01:42 +0200 Subject: [PATCH] root ssh --- configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configuration.nix b/configuration.nix index 30aa309..d7553df 100644 --- a/configuration.nix +++ b/configuration.nix @@ -101,6 +101,11 @@ ]; }; + users.users.root = { + isNormalUser = false; + openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMYGJCpFIiWqzy8YbfWh7+i52XVwyhUu+P0rUglVR5uV gws@nixos"]; + }; + # Allow unfree packages nixpkgs.config.allowUnfree = true;