{ config, lib, pkgs, ... }: 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 { profiles.clerie.common-ssh.knownHostsFiles = [ (pkgs.copyPathToStore ./hetzner-storage-box-ssh_known_hosts) ]; }; }