[headscale] Add headscale

This commit is contained in:
Christian
2023-09-23 11:18:37 +02:00
committed by ctsk
parent a25873d518
commit 1edca624c0
2 changed files with 30 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ let
ports = {
ssh = [ 2322 2323 2324 ];
gitea = 10010;
headscale = 10020;
};
in
@@ -13,12 +14,14 @@ in
imports = [
./hardware.nix
../../modules/gitea
../../modules/headscale
../../users/christian
];
services = {
gitea.enable = true;
nginx.enable = true;
headscale.enable = true;
openssh = {
enable = true;
ports = ports.ssh;