forked from extern/nix-config
13 lines
171 B
Nix
13 lines
171 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.mullvad-vpn = {
|
|
enable = true;
|
|
enableExcludeWrapper = false;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
mullvad-vpn
|
|
];
|
|
}
|