nixos/modules/desktop/wireguard/default.nix
2024-08-01 16:24:09 +04:00

20 lines
312 B
Nix

{
outputs,
options,
config,
lib,
pkgs,
...
}:
let
cfg = config.modules.desktop.wireguard;
in {
options.modules.desktop.wireguard = {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
# todo declaritivly setting it up
networking.wireguard.enable = true;
};
}