From 64a69e7812d23ec51b822a49c6d3e4715f3aca31 Mon Sep 17 00:00:00 2001 From: work Date: Mon, 2 Sep 2024 11:26:34 +0200 Subject: [PATCH] add secret ssh host aliases --- hosts/work/ssh.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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; }; }; }