cloud: Update nixpkgs to 24.11
This commit is contained in:
parent
67f6aba9c5
commit
e4aae3b8ae
4 changed files with 24 additions and 29 deletions
|
@ -35,23 +35,25 @@ rec {
|
|||
settings = {
|
||||
server_url = "https://hs.dtth.ch";
|
||||
|
||||
db_type = "postgres";
|
||||
db_host = "/var/run/postgresql"; # find out yourself
|
||||
db_user = "headscale";
|
||||
db_name = "headscale";
|
||||
database.type = "postgres";
|
||||
database.postgres = {
|
||||
host = "/var/run/postgresql"; # find out yourself
|
||||
user = "headscale";
|
||||
name = "headscale";
|
||||
};
|
||||
|
||||
dns_config = {
|
||||
base_domain = host;
|
||||
dns = {
|
||||
base_domain = "dtth.ts";
|
||||
};
|
||||
|
||||
noise = {
|
||||
private_key_path = "/var/lib/headscale/noise_private.key";
|
||||
};
|
||||
|
||||
ip_prefixes = [
|
||||
"fd7a:115c:a1e0::/48"
|
||||
"100.64.0.0/10"
|
||||
];
|
||||
prefixes = {
|
||||
v6 = "fd7a:115c:a1e0::/48";
|
||||
v4 = "100.64.0.0/10";
|
||||
};
|
||||
|
||||
derp.paths = [
|
||||
secrets."headscale/derp-servers/vnm".path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue