Commit 3b141457e984

Vincent Demeester <vincent@sbr.pm>
2024-01-02 14:24:28
Enable pam.enableSSHAgentAuth on most of my servers
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 89ec53e
Changed files (3)
systems/hosts/aomi.nix
@@ -219,4 +219,5 @@ in
 
     startAt = "daily";
   };
+  security.pam.enableSSHAgentAuth = true;
 }
systems/hosts/sakhalin.nix
@@ -123,6 +123,7 @@ in
     };
   };
   security.apparmor.enable = true;
+  security.pam.enableSSHAgentAuth = true;
   # -----------------------------------
   environment.etc."vrsync".text = ''
     /home/vincent/desktop/pictures/screenshots/ vincent@synodine.home:/volumeUSB2/usbshare/pictures/screenshots/
systems/hosts/shikoku.nix
@@ -176,4 +176,6 @@ in
     openssh.authorizedKeys.keys = [ (builtins.readFile ../../secrets/builder.pub) ];
   };
   nix.trustedUsers = [ "root" "vincent" "builder" ];
+
+  security.pam.enableSSHAgentAuth = true;
 }