1
0

profiles/hetzner-storage-box-client: Globally pin Hetzner Storage Box SSH public keys

This commit is contained in:
2025-11-16 14:02:54 +01:00
parent db9ea1ea5c
commit 0de7471ac0
4 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ config, lib, ... }:
with lib;
{
options.profiles.clerie.hetzner-storage-box-client = {
enable = mkEnableOption "Profile for Hetzner Storage Box Clients";
};
config = mkIf config.profiles.clerie.hetzner-storage-box-client.enable {
programs.ssh.knownHostsFiles = [
./hetzner-storage-box-ssh_known_hosts
];
};
}