summaryrefslogtreecommitdiff
path: root/system-profiles/openssh/default.nix
blob: 33a3e136d5f39fbec984453f25618dc923b77931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ customUtils, lib, config, hostName, pkgs, ... }:
{
  config = {
    programs.ssh.knownHosts = lib.zipAttrsWith (_name: values: builtins.head values) (lib.mapAttrsToList (name: lib.mapAttrs' (type: value: lib.nameValuePair "${name}-${type}" value)) (customUtils.nixImport { dir = ./known-hosts; }));

    systemd.user.services."ssh-agent".enable = lib.mkForce false; # ssh-agent should be done via home-manager

    services.openssh = lib.mkIf config.services.openssh.enable {
      hostKeys = [
        { path = "/etc/ssh/ssh_host_rsa_key";
          type = "rsa";
        }
        { path = "/etc/ssh/ssh_host_ed25519_key";
          type = "ed25519";
        }
      ];
    };

    sops.secrets = lib.mkIf config.services.openssh.enable {
      ssh_host_rsa_key = {
          key = "rsa";
          path = "/etc/ssh/ssh_host_rsa_key";
          sopsFile = ./host-keys + "/${hostName}.yaml";
      };
      ssh_host_ed25519_key = {
          key = "ed25519";
          path = "/etc/ssh/ssh_host_ed25519_key";
          sopsFile = ./host-keys + "/${hostName}.yaml";
      };
    };

    environment.etc = lib.mkIf config.services.openssh.enable {
      "ssh/ssh_host_rsa_key.pub".text = config.services.openssh.knownHosts."${hostName}-rsa".publicKey;
      "ssh/ssh_host_ed25519_key.pub".text = config.services.openssh.knownHosts."${hostName}-ed25519".publicKey;
    };

    environment.systemPackages = lib.mkIf config.services.openssh.enable (with pkgs; [
      rxvt_unicode.terminfo
    ]);
  };
}