Skip to content

Commit

Permalink
feat: add curl as a requirement (#8)
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Cecchi <[email protected]>
  • Loading branch information
leonardoce authored Oct 17, 2024
1 parent 4bec478 commit e6aee04
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 23 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 18 additions & 17 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,25 @@
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {inherit system; };
pkgs = import nixpkgs {inherit system; };
in {
devShells.default = pkgs.mkShell {
shellHook = ''
# Setup 'k' as a 'kubectl' alias
source <(kubectl completion bash)
devShells.default = pkgs.mkShell {
shellHook = ''
# Setup 'k' as a 'kubectl' alias
source <(kubectl completion bash)
alias k=kubectl
complete -o default -F __start_kubectl k
'';
alias k=kubectl
complete -o default -F __start_kubectl k
'';

packages = [
pkgs.kubectl
pkgs.helm
pkgs.kind
pkgs.jq
pkgs.kubectl-cnpg
];
};
});
packages = [
pkgs.kubectl
pkgs.helm
pkgs.kind
pkgs.jq
pkgs.curl
pkgs.kubectl-cnpg
];
};
});
}

0 comments on commit e6aee04

Please sign in to comment.