aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/wireguad.nix
blob: 67bd8d545c4f5e005e7c8a136114e1a2dd00aede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  config,
  lib,
  ...
}: let
  inherit (lib) mkEnableOption mkIf;
  cnf = config.cynerd.wireguard;
in {
  options = {
    cynerd.wireguard = {
      enable = mkEnableOption "Enable Wireguard";
    };
  };

  config =
    mkIf cnf.enable {
    };
}