mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-08-27 13:54:03 +02:00
11 lines
311 B
Nix
11 lines
311 B
Nix
{
|
|
lib,
|
|
outputs,
|
|
}:
|
|
lib.genAttrs (builtins.attrNames outputs.nixosConfigurations) (name: {
|
|
# Only the control-plane (master) nodes write the admin kubeconfig; agents
|
|
# (workers) connect to the master and have no --write-kubeconfig-* flags.
|
|
mode600 = lib.hasInfix "-master-" name;
|
|
mode644 = false;
|
|
})
|