diff --git a/config/services/gitea/default.nix b/config/services/gitea/default.nix index 2be57bf4..624bc355 100644 --- a/config/services/gitea/default.nix +++ b/config/services/gitea/default.nix @@ -44,10 +44,16 @@ ENABLED = true; SUBJECT = "%(APP_NAME)s"; HOST = "kittywit.ch:465"; + USER = "gitea@kittywit.ch"; SEND_AS_PLAIN_TEXT = true; USE_SENDMAIL = false; FROM = "\"kittywitch git\" "; }; + service = { + NO_REPLY_ADDRESS = "kittywit.ch"; + REGISTER_EMAIL_CONFIRM = true; + ENABLE_NOTIFY_MAIL = true; + }; ui = { THEMES = "gitea,arc-green"; DEFAULT_THEME = "gitea"; diff --git a/pkgs/lib/host-import.nix b/pkgs/lib/host-import.nix index cf7298ec..a22cb6ac 100644 --- a/pkgs/lib/host-import.nix +++ b/pkgs/lib/host-import.nix @@ -2,7 +2,7 @@ (../../config/hosts + "/${hostName}/nixos.nix") (../../config/trusted/hosts + "/${hostName}/nixos.nix") ] ++ (if builtins.isList profiles.base.imports then profiles.base.imports -else singleton profiles.base.imports) ++ singleton { +else singleton profiles.base) ++ singleton { home-manager.users.kat = { imports = filter builtins.pathExists [ (../../config/hosts + "/${hostName}/home.nix")