statix: fix bugs with inherit

now I know better what it does.
This commit is contained in:
2023-10-01 23:26:01 +03:00
parent 652ce88b76
commit 1dd4f04725
10 changed files with 13 additions and 14 deletions

View File

@@ -56,7 +56,7 @@
deployerbot = {
follower = {
inherit (myData.hosts."vno1-oh2.servers.jakst".publicKey);
inherit (myData.hosts."vno1-oh2.servers.jakst") publicKey;
enable = true;
sshAllowSubnets = [myData.subnets.tailscale.sshPattern];

View File

@@ -84,7 +84,7 @@ in {
deployerbot = {
follower = {
inherit (myData.hosts."vno1-oh2.servers.jakst".publicKey);
inherit (myData.hosts."vno1-oh2.servers.jakst") publicKey;
enable = true;
uidgid = myData.uidgid.updaterbot-deployee;

View File

@@ -196,10 +196,11 @@
};
follower = {
inherit (myData.hosts."vno1-oh2.servers.jakst") publicKey;
enable = true;
sshAllowSubnets = [myData.subnets.tailscale.sshPattern];
uidgid = myData.uidgid.updaterbot-deployee;
inherit (myData.hosts."vno1-oh2.servers.jakst".publicKey);
};
};

View File

@@ -94,10 +94,11 @@
deployerbot = {
follower = {
inherit (myData.hosts."vno1-oh2.servers.jakst") publicKey;
enable = true;
sshAllowSubnets = [myData.subnets.tailscale.sshPattern];
uidgid = myData.uidgid.updaterbot-deployee;
inherit (myData.hosts."vno1-oh2.servers.jakst".publicKey);
};
};