From e1f1054d675437171a06377798c223a18c2207ab Mon Sep 17 00:00:00 2001 From: Constantin Gierczak--Galle Date: Thu, 21 Nov 2024 18:49:13 +0100 Subject: [PATCH] style(photo01): remove lambda instance --- machines/photo01/nginx.nix | 3 --- machines/photo01/openssh.nix | 3 --- 2 files changed, 6 deletions(-) diff --git a/machines/photo01/nginx.nix b/machines/photo01/nginx.nix index cd65d4e..b44aeaa 100644 --- a/machines/photo01/nginx.nix +++ b/machines/photo01/nginx.nix @@ -1,7 +1,4 @@ -{ _ }: - { - services.nginx = { enable = true; recommendedTlsSettings = true; diff --git a/machines/photo01/openssh.nix b/machines/photo01/openssh.nix index ffdc319..5f4aeb2 100644 --- a/machines/photo01/openssh.nix +++ b/machines/photo01/openssh.nix @@ -1,5 +1,3 @@ -{ _ }: - { services.openssh = { enable = true; @@ -7,5 +5,4 @@ PasswordAuthentication = false; }; }; - }