mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
13 lines
171 B
Nix
13 lines
171 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.mullvad-vpn = {
|
|
enable = true;
|
|
enableExcludeWrapper = false;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
mullvad-vpn
|
|
];
|
|
}
|