mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
19 lines
328 B
Nix
19 lines
328 B
Nix
# Mullvad is a VPN service. This isn't currently in use for me at the moment.
|
|
|
|
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
options.mullvad.enable = lib.mkEnableOption "Mullvad VPN.";
|
|
|
|
config = lib.mkIf config.mullvad.enable {
|
|
|
|
services.mullvad-vpn.enable = true;
|
|
environment.systemPackages = [ pkgs.mullvad-vpn ];
|
|
};
|
|
}
|