From 647b07c4263de830a7fa32752be35e6d4d40786d Mon Sep 17 00:00:00 2001 From: hodasemi Date: Thu, 22 May 2025 09:44:23 +0200 Subject: [PATCH] Enable custom ssh conf for git system --- git_system.nix | 2 +- shared/ssh.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/git_system.nix b/git_system.nix index 970a006..012e5d9 100644 --- a/git_system.nix +++ b/git_system.nix @@ -20,7 +20,7 @@ in ./shared/system.nix ./shared/dev_user.nix ./shared/docker.nix - # ./shared/ssh.nix + ./shared/ssh.nix ]; security.acme = { diff --git a/shared/ssh.nix b/shared/ssh.nix index 14971d1..912d76e 100644 --- a/shared/ssh.nix +++ b/shared/ssh.nix @@ -10,8 +10,8 @@ enable = true; ports = [ 23 ]; settings = { - AllowUsers = [ "dev" ]; + AllowUsers = [ "dev" "root" ]; }; }; }; -} \ No newline at end of file +}