cleanup nvim merge and general janitorial work

This commit is contained in:
iofq 2026-02-26 22:17:19 -06:00
parent c544159576
commit db330b546d
30 changed files with 254 additions and 1300 deletions

23
shell.nix Normal file
View file

@ -0,0 +1,23 @@
{ pkgs, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [
age
deploy-rs
git
home-manager
k9s
kubectl
kubeseal
lua-language-server
nixd
sops
ssh-to-age
stylua
velero
(pkgs.writeShellScriptBin "deploy-k8s" ''
cd $(git rev-parse --show-toplevel)
kubectl config use-context lab
kubectl apply -k ./clusters/lab
'')
];
}