summaryrefslogtreecommitdiff
path: root/home/ssh/default.nix
blob: efee063c32dd6021b33d8b8633ab603e10649847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  config,
  lib,
  ...
}: {
  # ssh config
  programs.ssh = {
    enable = true;
    enableDefaultConfig = false;
    matchBlocks."*" = {};
    extraConfig = lib.fileContents ./config;
  };
}