From 8f4b74c188f6135bcb8d1f5b3d225b97a130c033 Mon Sep 17 00:00:00 2001 From: Riley Apeldoorn Date: Sat, 17 Jun 2023 12:51:00 +0200 Subject: [PATCH] Update locks --- flake.lock | 18 +++++++++--------- flake.nix | 3 ++- shared/core/ssh.nix | 5 +---- 3 files changed, 12 insertions(+), 14 deletions(-) diff --git a/flake.lock b/flake.lock index 06738a4..4af2e0d 100644 --- a/flake.lock +++ b/flake.lock @@ -83,11 +83,11 @@ "nixpkgs": "nixpkgs_2" }, "locked": { - "lastModified": 1684596126, - "narHash": "sha256-4RZZmygeEXpuBqEXGs38ZAcWjWKGwu13Iqbxub6wuJk=", + "lastModified": 1686922395, + "narHash": "sha256-ysevinohPxdKp0RXyhDRsz1/vh1eXazg4AWp0n5X/U4=", "owner": "nix-community", "repo": "home-manager", - "rev": "27ef11f0218d9018ebb2948d40133df2b1de622d", + "rev": "9ba7b3990eb1f4782ea3f5fe7ac4f3c88dd7a32c", "type": "github" }, "original": { @@ -145,11 +145,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1683286087, - "narHash": "sha256-xseOd7W7xwF5GOF2RW8qhjmVGrKoBz+caBlreaNzoeI=", + "lastModified": 1686501370, + "narHash": "sha256-G0WuM9fqTPRc2URKP9Lgi5nhZMqsfHGrdEbrLvAPJcg=", "owner": "nixos", "repo": "nixpkgs", - "rev": "3e313808bd2e0a0669430787fb22e43b2f4bf8bf", + "rev": "75a5ebf473cd60148ba9aec0d219f72e5cf52519", "type": "github" }, "original": { @@ -161,11 +161,11 @@ }, "nixpkgs_3": { "locked": { - "lastModified": 1684570954, - "narHash": "sha256-FX5y4Sm87RWwfu9PI71XFvuRpZLowh00FQpIJ1WfXqE=", + "lastModified": 1686869522, + "narHash": "sha256-tbJ9B8WLCTnVP/LwESRlg0dII6Zyg2LmUU/mB9Lu98E=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "3005f20ce0aaa58169cdee57c8aa12e5f1b6e1b3", + "rev": "7c67f006ea0e7d0265f16d7df07cc076fdffd91f", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 117189d..3b9ce78 100644 --- a/flake.nix +++ b/flake.nix @@ -48,7 +48,8 @@ modules = [ (mkUserConfig ./system/lime) agenix.nixosModules.default - nixos-hardware.nixosModules.lenovo-thinkpad-x390 + nixos-hardware.nixosModules.lenovo-thinkpad-x390 + nixos-hardware.nixosModules.common-gpu-nvidia-disable ./system/lime/core.nix ./shared/core ./shared/secrets.nix diff --git a/shared/core/ssh.nix b/shared/core/ssh.nix index 037fd0e..61bb537 100644 --- a/shared/core/ssh.nix +++ b/shared/core/ssh.nix @@ -4,14 +4,11 @@ services.openssh = { enable = true; - settings.passwordAuthentication = false; + settings.PasswordAuthentication = false; }; users.users."riley" = { packages = [ pkgs.openssh ]; - openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDroUHLf56zlYLiMoD1JV5XXZNwY9tftobDttC6hnfiM riley@dev-lt-63" - ]; }; } \ No newline at end of file