From 304afdc0d474c71e69b112eece73b980f9666460 Mon Sep 17 00:00:00 2001 From: steffen Date: Sat, 14 Mar 2026 10:44:36 +0100 Subject: [PATCH] prepearing first installations --- hosts/cryodev-main/services/default.nix | 10 ++++++---- hosts/cryodev-main/services/sops.nix | 10 ++++++---- hosts/cryodev-pi/services/default.nix | 8 +++++--- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/hosts/cryodev-main/services/default.nix b/hosts/cryodev-main/services/default.nix index 0bd3c67..7bdae19 100644 --- a/hosts/cryodev-main/services/default.nix +++ b/hosts/cryodev-main/services/default.nix @@ -1,13 +1,15 @@ { imports = [ - ./forgejo.nix - ./headplane.nix + # TODO: Enable after first install when SOPS secrets are configured + # ./forgejo.nix + # ./headplane.nix + # ./mailserver.nix + # ./tailscale.nix + ./headscale.nix - ./mailserver.nix ./netdata.nix ./nginx.nix ./openssh.nix ./sops.nix - ./tailscale.nix ]; } diff --git a/hosts/cryodev-main/services/sops.nix b/hosts/cryodev-main/services/sops.nix index 8df48e1..a7f8700 100644 --- a/hosts/cryodev-main/services/sops.nix +++ b/hosts/cryodev-main/services/sops.nix @@ -13,9 +13,11 @@ sops = { defaultSopsFile = ../secrets.yaml; # age.keyFile is not set, sops-nix defaults to using /etc/ssh/ssh_host_ed25519_key - secrets = { - "forgejo-runner/token" = { }; - "tailscale/auth-key" = { }; - }; + + # TODO: Enable after first install when SOPS secrets are configured + # secrets = { + # "forgejo-runner/token" = { }; + # "tailscale/auth-key" = { }; + # }; }; } diff --git a/hosts/cryodev-pi/services/default.nix b/hosts/cryodev-pi/services/default.nix index e4c52d5..55c0242 100644 --- a/hosts/cryodev-pi/services/default.nix +++ b/hosts/cryodev-pi/services/default.nix @@ -1,9 +1,11 @@ { imports = [ + # TODO: Enable after first install when SOPS secrets are configured + # ./tailscale.nix + # ./netdata.nix + # ./comin.nix + ./nginx.nix ./openssh.nix - ./tailscale.nix - ./netdata.nix - ./comin.nix ]; }