From 73f0dcd6ee95ffdb9a3568ee92c954e0a29a917e Mon Sep 17 00:00:00 2001 From: Alejandro Angulo Date: Mon, 13 Feb 2023 18:09:50 -0800 Subject: [PATCH] Updated lockfile Also addressed some renamed options. --- flake.lock | 18 +++++++++--------- system/gospel/configuration.nix | 6 ++++-- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/flake.lock b/flake.lock index baa89c0..9de7024 100644 --- a/flake.lock +++ b/flake.lock @@ -8,11 +8,11 @@ "utils": "utils" }, "locked": { - "lastModified": 1673343300, - "narHash": "sha256-5Xdj6kpXYMie0MlnGwqK5FaMdsedxvyuakWtyKB3zaQ=", + "lastModified": 1675935446, + "narHash": "sha256-WajulTn7QdwC7QuXRBavrANuIXE5z+08EdxdRw1qsNs=", "owner": "nix-community", "repo": "home-manager", - "rev": "176e455371a8371586e8a3ff0d56ee9f3ca2324e", + "rev": "2dce7f1a55e785a22d61668516df62899278c9e4", "type": "github" }, "original": { @@ -24,11 +24,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1673540789, - "narHash": "sha256-xqnxBOK3qctIeUVxecydrEDbEXjsvHCPGPbvsl63M/U=", + "lastModified": 1676202775, + "narHash": "sha256-gV/RnfVZkGLHn+5rmX2GSh5aquVHpWOJw1cnpEV03tQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0f213d0fee84280d8c3a97f7469b988d6fe5fcdf", + "rev": "d917136f550a8c36efb1724390c7245105f79023", "type": "github" }, "original": { @@ -40,11 +40,11 @@ }, "nur": { "locked": { - "lastModified": 1673647143, - "narHash": "sha256-Ee2zTadzHTgcfJBJNQsHyMgI4+AerEaqk24/jayVKqg=", + "lastModified": 1676331896, + "narHash": "sha256-ih3ehOL4wWaMko+ahkycoq8DQRodDqEbJVg6t7WY2PQ=", "owner": "nix-community", "repo": "NUR", - "rev": "fb20d6187f17ec81b655beb255f2b8eaa0a09889", + "rev": "e014e89fdfbd65e1fb572f00ea71dc2a9513fe6f", "type": "github" }, "original": { diff --git a/system/gospel/configuration.nix b/system/gospel/configuration.nix index 940b41a..26deb3d 100644 --- a/system/gospel/configuration.nix +++ b/system/gospel/configuration.nix @@ -139,8 +139,10 @@ # Enable the OpenSSH daemon. services.openssh = { enable = true; - passwordAuthentication = false; - permitRootLogin = "no"; + settings = { + PermitRootLogin = "no"; + PasswordAuthentication = false; + }; }; services.geoclue2.enable = true;