Add container tools to IVR

This commit is contained in:
Greg Hellings
2025-03-28 08:27:24 -05:00
parent 33a036ca40
commit a12688bf81
+13
View File
@@ -38,6 +38,9 @@ in
bitwarden-cli bitwarden-cli
direnv direnv
home-manager home-manager
k9s
kubectl
minikube
mysql-workbench mysql-workbench
nixStable nixStable
pipenv-ivr pipenv-ivr
@@ -50,6 +53,7 @@ in
)) ))
pre-commit pre-commit
robo3t robo3t
skaffold
x x
]; ];
file.".pip/pip.conf".text = ( file.".pip/pip.conf".text = (
@@ -66,4 +70,13 @@ in
homeDirectory = lib.mkForce "/home/gregory.hellings"; homeDirectory = lib.mkForce "/home/gregory.hellings";
}; };
programs.tmux.shell = (lib.getExe x); programs.tmux.shell = (lib.getExe x);
services.podman = {
enable = true;
settings = {
registries.search = [
"docker.io"
"quay.io"
];
};
};
} }