diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-03-18 12:42:23 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-03-18 12:42:23 -0700 |
commit | e3904e2674c4c152497ffb8673e5d3dbfa881dcb (patch) | |
tree | f407df64dbd6ae67d1df3e5dfa415605852ff377 /home/root/ginaz.nix | |
parent | 43439e5e6db8b66c502af333767de0e930387840 (diff) | |
download | nix-e3904e2674c4c152497ffb8673e5d3dbfa881dcb.tar nix-e3904e2674c4c152497ffb8673e5d3dbfa881dcb.tar.gz nix-e3904e2674c4c152497ffb8673e5d3dbfa881dcb.tar.bz2 nix-e3904e2674c4c152497ffb8673e5d3dbfa881dcb.tar.lz nix-e3904e2674c4c152497ffb8673e5d3dbfa881dcb.tar.xz nix-e3904e2674c4c152497ffb8673e5d3dbfa881dcb.tar.zst nix-e3904e2674c4c152497ffb8673e5d3dbfa881dcb.zip |
Add SSH configuration for root@ginaz
Diffstat (limited to 'home/root/ginaz.nix')
-rw-r--r-- | home/root/ginaz.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/home/root/ginaz.nix b/home/root/ginaz.nix index 72dbda0..4675184 100644 --- a/home/root/ginaz.nix +++ b/home/root/ginaz.nix @@ -1,5 +1,12 @@ { inputs, lib, pkgs, config, outputs, ... }: { + + home = { + file = { + "bin/knock".source = ../common/scripts/knock; + }; + }; + imports = [ common/core ]; @@ -7,4 +14,14 @@ nix.extraOptions = '' !include /run/secrets/nix-access-token-github ''; + + sops = { + age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ]; + defaultSopsFile = ./secrets/ginaz.yaml; + + secrets = { + "ssh_config" = { + path = "/root/.ssh/config"; + }; + }; } |