Change owner of the git secret

This commit is contained in:
coolneng 2022-06-23 20:10:32 +02:00
parent f1658347f3
commit 77ded04451
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 5 additions and 1 deletions

View File

@ -123,7 +123,11 @@ with pkgs;
owner = "miniflux"; owner = "miniflux";
group = "miniflux"; group = "miniflux";
}; };
secrets.git.file = secrets/git.age; secrets.git = {
file = secrets/git.age;
owner = "coolneng";
group = "users";
};
identityPaths = [ "/etc/ssh/id_ed25519" ]; identityPaths = [ "/etc/ssh/id_ed25519" ];
}; };