20 lines
386 B
Nix
20 lines
386 B
Nix
{ 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)
|
|
];
|
|
|
|
};
|
|
|
|
}
|