From 48fb6909cb64f5f4c12c7e947793d6cdde5f3ccf Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Mon, 18 Nov 2024 21:07:16 +0530 Subject: [PATCH] fix: Don't put openssh option in networking --- nixos/ryu/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/ryu/configuration.nix b/nixos/ryu/configuration.nix index e188dac7..1c61939b 100644 --- a/nixos/ryu/configuration.nix +++ b/nixos/ryu/configuration.nix @@ -134,6 +134,8 @@ }; }; + services.openssh.enable = true; + networking = { hostName = "ryu"; # Define your hostname. nameservers = ["1.1.1.1" "8.8.8.8"]; @@ -156,7 +158,6 @@ # List services that you want to enable: # Enable the OpenSSH daemon. - services.openssh.enable = true; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ];