Enables the zerotier service on nixos

This commit is contained in:
willemml 2023-11-10 23:54:34 -08:00
parent 34bd0fb3f0
commit 09169c205c
Signed by: willemml
GPG key ID: C3DE5DF6198DACBD
2 changed files with 5 additions and 0 deletions

View file

@ -10,6 +10,7 @@
../profiles/hyprland.nix
../profiles/default.nix
../modules/users/willem/home.nix
../modules/zerotier.nix
];
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod"];

View file

@ -0,0 +1,4 @@
{...}: {
services.zerotierone.enable = true;
services.zerotierone.joinNetworks = ["17d709436ca2929d"];
}