style: use alejandra formatter on all nix files

This commit is contained in:
Yorick Barbanneau 2025-09-25 23:33:01 +02:00
parent d563805909
commit 0d8a394dcf
Signed by: ephase
GPG key ID: 246042E52B41FFCF
76 changed files with 1287 additions and 935 deletions

View file

@ -1,9 +1,12 @@
{ lib, config, pkgs, ... }:
with lib;
let
cfg = config.modules.cli.k8s;
in
{
lib,
config,
pkgs,
...
}:
with lib; let
cfg = config.modules.cli.k8s;
in {
options.modules.cli.k8s = {
enable = mkEnableOption "Install k8s utils";
@ -15,10 +18,12 @@ in
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
kubectl
kubecm
] ++ cfg.kubectlPlugins;
home.packages = with pkgs;
[
kubectl
kubecm
]
++ cfg.kubectlPlugins;
programs.k9s = {
enable = true;
};