hello wireguard

This commit is contained in:
foosinn 2020-06-14 11:09:48 +02:00
parent 5ef2f3b1c6
commit 4723d6b75b
2 changed files with 8 additions and 0 deletions

View file

@ -18,6 +18,7 @@
./roles/base.nix
./roles/desktop.nix
./roles/wireless.nix
./roles/vpn.nix
];
boot.loader.systemd-boot.enable = true;

7
roles/vpn.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
wireguard
];
}