feat(darwin): Wireguard

This commit is contained in:
punkfairie 2025-01-25 08:55:23 -08:00
parent 14bc449701
commit a3ce393c04
Signed by: punkfairie
GPG key ID: 8CEDBFDF5C0D613D

View file

@ -0,0 +1,20 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.marleyos.programs.wireguard;
in
{
options.marleyos.programs.wireguard.enable = mkEnableOption "wireguard";
config = mkIf cfg.enable {
homebrew.masApps = {
"WireGuard" = 1451685025;
};
};
}