1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-06-08 19:35:48 +02:00
parent b397f15e61
commit a026867c03
No known key found for this signature in database
2 changed files with 24 additions and 16 deletions

30
flake.lock generated
View file

@ -143,11 +143,11 @@
"nixpkgs-lib": "nixpkgs-lib" "nixpkgs-lib": "nixpkgs-lib"
}, },
"locked": { "locked": {
"lastModified": 1748821116, "lastModified": 1749398372,
"narHash": "sha256-F82+gS044J1APL0n4hH50GYdPRv/5JWm34oCJYmVKdE=", "narHash": "sha256-tYBdgS56eXYaWVW3fsnPQ/nFlgWi/Z2Ymhyu21zVM98=",
"owner": "hercules-ci", "owner": "hercules-ci",
"repo": "flake-parts", "repo": "flake-parts",
"rev": "49f0870db23e8c1ca0b5259734a02cd9e1e371a1", "rev": "9305fe4e5c2a6fcf5ba6a3ff155720fbe4076569",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -547,11 +547,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1748751003, "lastModified": 1749355504,
"narHash": "sha256-i4GZdKAK97S0ZMU3w4fqgEJr0cVywzqjugt2qZPrScs=", "narHash": "sha256-L17CdJMD+/FCBOHjREQLXbe2VUnc3rjffenBbu2Kwpc=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-index-database", "repo": "nix-index-database",
"rev": "2860bee699248d828c2ed9097a1cd82c2f991b43", "rev": "40a6e15e44b11fbf8f2b1df9d64dbfc117625e94",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -568,11 +568,11 @@
"rust-overlay": "rust-overlay_2" "rust-overlay": "rust-overlay_2"
}, },
"locked": { "locked": {
"lastModified": 1749252229, "lastModified": 1749338348,
"narHash": "sha256-zIXU2Z+OBmkI+qjryUtVILP6qgZo+0bnIEy3UAw0CAE=", "narHash": "sha256-IBLKyOU55Kt1gSXL4dFQUQUVcYd5+qfSrVAL8lcE8QY=",
"owner": "lilyinstarlight", "owner": "lilyinstarlight",
"repo": "nixos-cosmic", "repo": "nixos-cosmic",
"rev": "821627b7fe15013554cab4e9db4b8cb6fa9e8baf", "rev": "f2ac592313c51c9be981e45f56dc00714e103477",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -817,11 +817,11 @@
}, },
"nixpkgs_8": { "nixpkgs_8": {
"locked": { "locked": {
"lastModified": 1748929857, "lastModified": 1749143949,
"narHash": "sha256-lcZQ8RhsmhsK8u7LIFsJhsLh/pzR9yZ8yqpTzyGdj+Q=", "narHash": "sha256-QuUtALJpVrPnPeozlUG/y+oIMSLdptHxb3GK6cpSVhA=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c2a03962b8e24e669fb37b7df10e7c79531ff1a4", "rev": "d3d2d80a2191a73d1e86456a751b83aa13085d7d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -978,11 +978,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1749177458, "lastModified": 1749263796,
"narHash": "sha256-9HNq3EHZIvvxXQyEn0sYOywcESF1Xqw2Q8J1ZewcXuk=", "narHash": "sha256-m52UsUrcNjAzgc0cwcg94INkiFyVPTn6KbFGr4x4cu8=",
"owner": "oxalica", "owner": "oxalica",
"repo": "rust-overlay", "repo": "rust-overlay",
"rev": "d58933b88cef7a05e9677e94352fd6fedba402cd", "rev": "6e1d910306edfe6e4b718878f222c5672500d6b2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -9,7 +9,15 @@ in
port = 8010; port = 8010;
settings = { settings = {
server_url = "https://${virtualHostName}"; server_url = "https://${virtualHostName}";
dns.base_domain = "tailnet.helveticanonstandard.net"; dns = {
base_domain = "tailnet.helveticanonstandard.net";
nameservers.global = [
"1.1.1.1"
"1.0.0.1"
"2606:4700:4700::1111"
"2606:4700:4700::1001"
];
};
logtail.enabled = false; logtail.enabled = false;
}; };
}; };