refactor: reindent

This commit is contained in:
Sridhar Ratnakumar 2024-04-03 16:52:10 +11:00
parent 23d4d205ad
commit aa590e0ada

View file

@ -52,14 +52,20 @@
[ "op" "read" "op://Personal/nixos-config/${field}" ];
in
{
github-runner = {
targetHost = "github-runner";
targetUser = "srid";
keys."github-runner-token.secret" = {
github-runner =
let
user = "github-runner";
keyCommand = read1Password "github-runner-token";
in
{
targetHost = "github-runner";
targetUser = "srid";
keys = {
"github-runner-token.secret" = {
inherit user;
keyCommand = read1Password "github-runner-token";
};
};
};
};
};
flake = {