Move ssh config to secrets

This commit is contained in:
2025-11-29 19:43:21 +01:00
parent b04bfaade8
commit 1cc8ae103e
6 changed files with 19 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
{ config, ... }:
{
programs.ssh = {
enable = true;
includes = [
config.sops.secrets.ssh_config_orion.path
];
};
}