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