feat: add mullvad

This commit is contained in:
Felix Schröter 2020-05-22 18:16:21 +02:00
parent dfe16651ab
commit 35d682dd05
No known key found for this signature in database
GPG key ID: A12D7C9D2FD34458
5 changed files with 20 additions and 0 deletions

12
home/vpn.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
with pkgs;
{
home.packages = with pkgs; [
mullvad-vpn
];
# autostart
xdg.configFile."autostart/mullvad-vpn.desktop".source =
"${mullvad-vpn}/share/applications/mullvad-vpn.desktop";
}