From 07587152822b3ab353c6f97023aeb09c613095f8 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Sat, 15 Nov 2025 23:33:12 -0500 Subject: [PATCH] yarn: enable sshd --- etcnixos/system-yarn.nix | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/etcnixos/system-yarn.nix b/etcnixos/system-yarn.nix index 0124105..b0035f6 100644 --- a/etcnixos/system-yarn.nix +++ b/etcnixos/system-yarn.nix @@ -18,17 +18,17 @@ ]; networking.hostId = "abf570f9"; - # services.openssh = { - # enable = true; - # ports = [ 22 ]; - # settings = { - # PasswordAuthentication = true; - # AllowUsers = null; # Allows all users by default. Can be [ "user1" "user2" ] - # UseDns = true; - # X11Forwarding = false; - # PermitRootLogin = "no"; # "yes", "without-password", "prohibit-password", "forced-commands-only", "no" - # }; - # }; + services.openssh = { + enable = true; + ports = [ 22 ]; + settings = { + PasswordAuthentication = true; + AllowUsers = null; # Allows all users by default. Can be [ "user1" "user2" ] + UseDns = true; + X11Forwarding = false; + PermitRootLogin = "no"; # "yes", "without-password", "prohibit-password", "forced-commands-only", "no" + }; + }; programs.steam = { remotePlay.openFirewall = true;