Skip to content

Commit

Permalink
Uninstall kind
Browse files Browse the repository at this point in the history
kind is much useful, however it is a creating k8s environment tool
so unnecessary for dotfiles global. I may use it with temporal devshell

Prparation part for GH-917
  • Loading branch information
kachick committed Dec 30, 2024
1 parent fe1c803 commit ae037f5
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 16 deletions.
1 change: 0 additions & 1 deletion home-manager/bash.nix
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@
source "${pkgs.fzf-git-sh}/share/fzf-git-sh/fzf-git.sh"
source "${pkgs.podman}/share/bash-completion/completions/podman"
source "${pkgs.kubectl}/share/bash-completion/completions/kubectl.bash"
source "${pkgs.kind}/share/bash-completion/completions/kind.bash"
source "${pkgs.zellij}/share/bash-completion/completions/zellij.bash"
# https://github.com/NixOS/nixpkgs/pull/362139
Expand Down
1 change: 0 additions & 1 deletion home-manager/linux.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
docker-compose

kubectl
patched.kind # https://github.com/kubernetes-sigs/kind/pull/3814
stern
unstable.k9s # https://github.com/NixOS/nixpkgs/pull/356238, https://github.com/NixOS/nixpkgs/pull/360993

Expand Down
1 change: 0 additions & 1 deletion home-manager/zsh.nix
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ in
source "${pkgs.fzf-git-sh}/share/fzf-git-sh/fzf-git.sh"
source "${pkgs.podman}/share/zsh/site-functions/_podman"
source "${pkgs.kubectl}/share/zsh/site-functions/_kubectl"
source "${pkgs.kind}/share/zsh/site-functions/_kind"
# https://github.com/NixOS/nixpkgs/pull/362139
source "${pkgs.unstable.dprint}/share/zsh/site-functions/_dprint"
# cargo-make recommends to use bash completions for zsh
Expand Down
13 changes: 0 additions & 13 deletions overlays/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,6 @@
{ }
);

# Require unstable to apply https://github.com/NixOS/nixpkgs/pull/355534
kind = prev.unstable.kind.overrideAttrs (
finalAttrs: previousAttrs: {
patches = previousAttrs.patches ++ [
(prev.fetchpatch2 {
# https://github.com/kubernetes-sigs/kind/pull/3814
url = "https://patch-diff.githubusercontent.com/raw/kubernetes-sigs/kind/pull/3814.patch";
hash = "sha256-zoS+C16lURnxSgnbxwIfBoJOWPIamOtmS3HKxGuWkYI=";
})
];
}
);

# TODO: Remove after merging https://github.com/NixOS/nixpkgs/pull/301440
cozette = prev.cozette.overrideAttrs (
finalAttrs: previousAttrs: {
Expand Down

0 comments on commit ae037f5

Please sign in to comment.