statix: fix bugs with inherit
now I know better what it does.
This commit is contained in:
@@ -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];
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -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);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user