8 lines
198 B
Nix
8 lines
198 B
Nix
|
{ config, pkgs, lib, ... }: {
|
||
|
networking.wireguard.enable = true;
|
||
|
# services.mullvad-vpn.enable = true;
|
||
|
networking.wg-quick.interfaces = {
|
||
|
wg-mullvad = import ./mullvad.secret.nix;
|
||
|
};
|
||
|
}
|