From 75e1954bbdebc9c8fd7bbf6e649678a1c3c47135 Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Sat, 14 Feb 2026 18:46:56 -0800 Subject: [PATCH 1/2] Fix acme cert name --- systems/x86_64-linux/gospel/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/gospel/default.nix b/systems/x86_64-linux/gospel/default.nix index 31ebbaf..62437d4 100644 --- a/systems/x86_64-linux/gospel/default.nix +++ b/systems/x86_64-linux/gospel/default.nix @@ -35,7 +35,7 @@ services.atticd = { enable = true; - acmeCertName = "attic.kilonull.com"; + acmeCertName = "kilonull.com"; }; services.openssh.enable = true; services.printing.enable = true; From 221ecfb4d305ea54e33d3e8491a957f8c03fae15 Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Sat, 14 Feb 2026 18:48:54 -0800 Subject: [PATCH 2/2] Fix settings' names --- modules/nixos/services/atticd/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/nixos/services/atticd/default.nix b/modules/nixos/services/atticd/default.nix index e4a0375..7e50629 100644 --- a/modules/nixos/services/atticd/default.nix +++ b/modules/nixos/services/atticd/default.nix @@ -35,10 +35,10 @@ in # openssl genrsa -traditional 4096 | base64 -w0 environmentFile = config.age.secrets.atticd.path; settings = { - allowed_hosts = "attic.kilonull.com"; - api_endpoint = "https://attic.kilonull.com/"; + allowed-hosts = "attic.kilonull.com"; + api-endpoint = "https://attic.kilonull.com/"; listen = "[::]:8080"; - garbage_collection.retention_period = "30d"; + garbage-collection.retention-period = "30d"; }; };