From 996f8f7db6542cdd49a54e97910c67e61311a533 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Wed, 29 Jan 2025 10:50:50 -0500 Subject: [PATCH] nebula test run --- flake.nix | 2 +- modules/security/ssh.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 77d0bba..e42d573 100644 --- a/flake.nix +++ b/flake.nix @@ -118,7 +118,7 @@ "${nixpkgs}/nixos/modules/virtualisation/amazon-image.nix" { networking.hostName = "WCE-Lighthouse1"; - defaultSopsFile = inputs.nix-secrets.secrets.lighthouse1; + sops.defaultSopsFile = inputs.nix-secrets.secrets.lighthouse1; } home-manager.nixosModules.home-manager sops-nix.nixosModules.sops diff --git a/modules/security/ssh.nix b/modules/security/ssh.nix index cc414db..6178557 100644 --- a/modules/security/ssh.nix +++ b/modules/security/ssh.nix @@ -2,7 +2,7 @@ services.openssh = { enable = true; settings = { - PermitRootLogin = "no"; + PermitRootLogin = "prohibit-password"; PasswordAuthentication = false; }; };