summaryrefslogtreecommitdiff
path: root/hm/conf/ssh.nix
blob: 4587751068fbf8b259b1ae574fe74c243a011d39 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, lib, ... }:
let
  cfg = config.szpont.hm.conf.ssh;
in
{
  options.szpont.hm.conf.ssh.enable = lib.mkEnableOption "enables ssh support";

  config = lib.mkIf cfg.enable {

  };
}