semicolon
This commit is contained in:
parent
8559b5331c
commit
1af45acd62
3 changed files with 3 additions and 3 deletions
|
|
@ -35,7 +35,7 @@ in
|
||||||
token = config.sops.secrets.k3s_token.path;
|
token = config.sops.secrets.k3s_token.path;
|
||||||
clusterInit = mkIf cfg.initServer true;
|
clusterInit = mkIf cfg.initServer true;
|
||||||
serverAddr = mkIf (!cfg.initServer) "https://10.5.0.103:6443";
|
serverAddr = mkIf (!cfg.initServer) "https://10.5.0.103:6443";
|
||||||
manifests = import ./manifests.nix { inherit lib cfg inputs };
|
manifests = import ./manifests.nix { inherit lib cfg inputs; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
@ -3,6 +3,6 @@ let
|
||||||
manifests = [
|
manifests = [
|
||||||
"./ubuntu.nix"
|
"./ubuntu.nix"
|
||||||
];
|
];
|
||||||
imported = map ( n: import ${n} { inherit cfg lib inputs } ) manifests;
|
imported = map ( n: import ${n} { inherit cfg lib inputs; } ) manifests;
|
||||||
in
|
in
|
||||||
lib.foldl' lib.recursiveUpdate {} imported
|
lib.foldl' lib.recursiveUpdate {} imported
|
||||||
|
|
@ -3,6 +3,6 @@ let
|
||||||
manifests = [
|
manifests = [
|
||||||
""
|
""
|
||||||
];
|
];
|
||||||
imported = map ( n: import ${n} { inherit cfg lib inputs } ) manifests;
|
imported = map ( n: import ${n} { inherit cfg lib inputs; } ) manifests;
|
||||||
in
|
in
|
||||||
lib.foldl' lib.recursiveUpdate {} imported
|
lib.foldl' lib.recursiveUpdate {} imported
|
||||||
Loading…
Add table
Add a link
Reference in a new issue