This commit is contained in:
2025-07-06 16:09:54 +03:00
parent ed97db54c2
commit 1e9b9245cc
3 changed files with 26 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{ inputs, ... }@flakeContext:
{
config,
lib,
pkgs,
...
}:
{
services = {
zerotierone = {
enable = true;
joinNetworks = [
"db64858fedde087e"
];
port = 9993;
};
};
environment = {
systemPackages = with pkgs; [
zerotierone
];
};
}