Upgrade to NixOS 26.05

This commit is contained in:
2026-05-31 20:12:35 +02:00
parent 0b7c199fa4
commit 7544f6d121
6 changed files with 23 additions and 9 deletions
+5
View File
@@ -237,6 +237,11 @@ with pkgs;
owner = "63026"; owner = "63026";
group = "63026"; group = "63026";
}; };
secrets.grafana = {
file = secrets/grafana.age;
owner = "grafana";
group = "granafa";
};
identityPaths = [ "/etc/ssh/id_ed25519" ]; identityPaths = [ "/etc/ssh/id_ed25519" ];
}; };
+1 -1
View File
@@ -9,7 +9,7 @@
}; };
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05";
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/*"; determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/*";
agenix = { agenix = {
url = "github:ryantm/agenix"; url = "github:ryantm/agenix";
+7 -4
View File
@@ -82,10 +82,13 @@ with pkgs;
# Grafana configuration # Grafana configuration
services.grafana = { services.grafana = {
enable = true; enable = true;
settings.server = { settings = {
domain = "grafana.psydnd.org"; server = {
http_port = 9009; domain = "grafana.psydnd.org";
http_addr = "127.0.0.1"; http_port = 9009;
http_addr = "127.0.0.1";
};
security.secret_key = config.age.secrets.grafana.path;
}; };
}; };
+4 -4
View File
@@ -135,10 +135,10 @@ in
services.resolved = { services.resolved = {
enable = true; enable = true;
llmnr = "false"; llmnr = "false";
extraConfig = '' settings.Resolve = {
MulticastDNS=yes MulticastDNS = true;
DNSStubListener=no DNSStubListener = false;
''; };
}; };
# DNS server with ad-block # DNS server with ad-block
+5
View File
@@ -0,0 +1,5 @@
age-encryption.org/v1
-> ssh-ed25519 iUaRGg Ag32nut/aBlxEy7RPw7sV5itZSHkp8eMLVtxFxwQ8EM
ZhK8EZWTLkxrwo+x97w4HpexDXkC1yQuKyYFujqlOgs
--- kszqKtyubreK5mGkrJg4hrEKrfITJCCM/hW6IHKlMIE
TÚ+À~/ œDbM?Çø×å ½œa-ð'ƒÒp^5ç›?ï&#!àϳ‰þ~59O
+1
View File
@@ -22,4 +22,5 @@ in
"acme-porkbun.age".publicKeys = [ zion ]; "acme-porkbun.age".publicKeys = [ zion ];
"microbin.age".publicKeys = [ zion ]; "microbin.age".publicKeys = [ zion ];
"readeck.age".publicKeys = [ zion ]; "readeck.age".publicKeys = [ zion ];
"grafana.age".publicKeys = [ zion ];
} }