Adding nix shell
This commit is contained in:
parent
a4294e0914
commit
d3504d4574
2 changed files with 14 additions and 6 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
.direnv
|
||||||
.private/
|
.private/
|
||||||
.venv/
|
.venv/
|
||||||
.terraform
|
.terraform
|
||||||
|
|
17
shell.nix
17
shell.nix
|
@ -1,9 +1,16 @@
|
||||||
|
# Shell for bootstrapping flake-enabled nix and home-manager
|
||||||
{pkgs ? import <nixpkgs> {}}:
|
{pkgs ? import <nixpkgs> {}}:
|
||||||
|
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
packages = [
|
# Enable experimental features without having to specify the argument
|
||||||
pkgs.k9s
|
NIX_CONFIG = "experimental-features = nix-command flakes";
|
||||||
pkgs.kubectl
|
|
||||||
pkgs.kubevirt
|
nativeBuildInputs = with pkgs; [
|
||||||
|
git
|
||||||
|
go-task
|
||||||
|
sops
|
||||||
|
pre-commit
|
||||||
|
gitleaks
|
||||||
|
k9s
|
||||||
|
kubectl
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue