From b8f904b54355f0257050c18ed198353960b2d835 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Sat, 17 Feb 2024 11:56:20 +0100 Subject: [PATCH] Try fix --- modules/openssh.nix | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/modules/openssh.nix b/modules/openssh.nix index 02a86f3..c27ae0a 100644 --- a/modules/openssh.nix +++ b/modules/openssh.nix @@ -1,12 +1,14 @@ { config, pkgs, ... }: -services.openssh = { - enable = true; - passwordAuthentication = true; - listenAddresses = [ - { - addr = "192.168.1.0/24"; - port = "22"; - } - ] -}; \ No newline at end of file +{ + services.openssh = { + enable = true; + passwordAuthentication = true; + listenAddresses = [ + { + addr = "192.168.1.0/24"; + port = "22"; + } + ]; + }; +} \ No newline at end of file