Initial headscale setup
This commit is contained in:
parent
817e15088e
commit
d9f99cd2f0
2 changed files with 35 additions and 0 deletions
34
nixos/machines/driftwood/headscale.nix
Normal file
34
nixos/machines/driftwood/headscale.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page, on
|
||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
services.headscale = {
|
||||
enable = true;
|
||||
settings = {
|
||||
server_url = "https://headscale.stranger.systems:443";
|
||||
allowed_users = [
|
||||
"thatonelutenist@stranger.systems"
|
||||
];
|
||||
dns = {
|
||||
base_domain = "tailnet.stranger.systems";
|
||||
magic_dns = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [headscale];
|
||||
|
||||
services.nginx.virtualHosts."headscale.stranger.systems" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:8080";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -39,6 +39,7 @@
|
|||
})
|
||||
(import ../../modules/ssh.nix)
|
||||
(import ./containers/conduit.nix)
|
||||
(import ./headscale.nix)
|
||||
];
|
||||
|
||||
nix.settings.experimental-features = [
|
||||
|
|
Loading…
Add table
Reference in a new issue