From 8657848bf1a6ebf807d97aef3bd6387755fcd9df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Mon, 17 Jan 2022 12:00:18 +0100 Subject: [PATCH] Move gitea secret to sops --- config/nix.nix | 1 + config/services/gitea.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/nix.nix b/config/nix.nix index e9945753..c16c37c0 100644 --- a/config/nix.nix +++ b/config/nix.nix @@ -25,6 +25,7 @@ "--recreate-lock-file" "--no-write-lock-file" "-L" # print build logs + "--impure" # unfortunately... ]; dates = "daily"; }; diff --git a/config/services/gitea.nix b/config/services/gitea.nix index b1a70b93..7530378d 100644 --- a/config/services/gitea.nix +++ b/config/services/gitea.nix @@ -1,6 +1,6 @@ { config, ... }: { imports = [ - ../../impure-secrets.nix + /run/secrets/services/gitea.nix ]; services.gitea = { enable = true;