machines: aramis: services: enable wireguard

This commit is contained in:
Bruno BELANYI 2021-04-23 18:31:10 +00:00
parent f8a1480d09
commit 4c154c7216
2 changed files with 9 additions and 0 deletions

View File

@ -10,6 +10,7 @@
./hardware.nix
./home.nix
./networking.nix
./services.nix
./sound.nix
];

View File

@ -0,0 +1,8 @@
{ lib, ... }:
{
config.my.services = {
wireguard = {
enable = true;
};
};
}