Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions users/refnode/common/optional/kubernetes.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ pkgs, ... }:

{
# Kubernetes and container management tools
# Use case: Cloud-native development and operations

home.packages = with pkgs; [
# Core Kubernetes tools
unstable.kubectl
unstable.kubectl-ktop
unstable.kubectx
unstable.kubelogin
unstable.kubelogin-oidc
unstable.krew
unstable.kustomize
unstable.kubernetes-helm

# Development and testing
unstable.kind
unstable.k9s
unstable.stern
unstable.k6

# Security and compliance
unstable.kube-linter
unstable.kubeconform
unstable.sonobuoy

# Container tools
unstable.dive
unstable.crane
unstable.docker-client

# Infrastructure as Code
unstable.opentofu

# Platform-specific tools
unstable.openshift
unstable.kubeone
unstable.talosctl
unstable.cilium-cli
unstable.fluxcd
];
}
25 changes: 1 addition & 24 deletions users/refnode/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
imports = [
./common/core
./common/optional/desktop/darwin.nix
./common/optional/kubernetes.nix
];

# specify my home-manager configs
Expand Down Expand Up @@ -86,8 +87,6 @@
unstable.plantuml-c4
unstable.ffmpeg_7
unstable.msmtp
unstable.docker-client
unstable.fluxcd
unstable.go
unstable.gopls
unstable.goreleaser
Expand All @@ -96,33 +95,11 @@
unstable.platformio
# encryption
unstable.sops
# kubernetes tools
unstable.kubectl
unstable.kubectx
unstable.kubelogin
unstable.kubelogin-oidc
unstable.krew
unstable.kustomize
unstable.kubernetes-helm
unstable.kube-linter
unstable.kubeconform
unstable.kind
unstable.k9s
unstable.stern
unstable.k6
unstable.openshift
unstable.dive
unstable.crane
unstable.sonobuoy
unstable.opentofu
unstable.kubeone
##
unstable.sqlite
unstable.mob
pkgs.garden
unstable.rustup
unstable.talosctl
unstable.cilium-cli
unstable.jujutsu
unstable.minio-client
unstable.kanata
Expand Down
Loading