first working blogbox done

This commit is contained in:
alisceon 2026-05-30 16:54:22 +02:00
parent 31351d447c
commit 8a2e2532bd
4 changed files with 64 additions and 109 deletions

View file

@ -84,7 +84,11 @@ in
config = lib.mkIf cfg.enable {
systemd.services.fetch-oci-authorized-keys = {
description = "Fetch OCI metadata authorized_keys for ${cfg.user}";
wantedBy = [ "multi-user.target" ];
wantedBy = [
"sshd.service"
"multi-user.target"
];
before = [ "sshd.service" ];
after = [ "network-online.target" ];
wants = [ "network-online.target" ];
serviceConfig = {