diff --git a/hosts/work/ssh.nix b/hosts/work/ssh.nix index fb97e70..7a1c592 100644 --- a/hosts/work/ssh.nix +++ b/hosts/work/ssh.nix @@ -1,4 +1,7 @@ -_: { +{ + inputs, + ... +}: { poz.services.ssh = { daemon.enable = false; agent = { @@ -9,7 +12,7 @@ _: { publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMmtUtuo1d1QT4w4SeefWQq7DYxPWqixf4wBE8usAYlY"; user = "forgejo"; }; - }; + } // inputs.work-secrets.ssh; }; }; }