mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
21 lines
434 B
Nix
21 lines
434 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.suites.vpn;
|
|
in
|
|
{
|
|
options.suites.vpn = {
|
|
personal.enable = lib.mkEnableOption "personal VPN configuration with Wireguard";
|
|
};
|
|
|
|
config = lib.mkMerge [
|
|
(lib.mkIf cfg.personal.enable {
|
|
services.tailscale.enable = true;
|
|
networking = {
|
|
nameservers = [ "100.100.100.100" "8.8.8.8" "1.1.1.1" ];
|
|
search = [ "barbel-bee.ts.net" ];
|
|
};
|
|
})
|
|
];
|
|
}
|