[home] Create explicit kubectl role
This allows work machines to enable development, while not including non-work-related kubectl management stuffs.
This commit is contained in:
16
home/roles/kubectl/default.nix
Normal file
16
home/roles/kubectl/default.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ config, lib, pkgs, globalInputs, system, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.home.roles.kubectl;
|
||||
in
|
||||
{
|
||||
options.home.roles.kubectl = {
|
||||
enable = mkEnableOption "Enable management tools for the homelab k3s oglenet cluster";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.kubectl-secure.enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user