From a12688bf81afcf4ee7105f93075dbc4e03d7da46 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Fri, 28 Mar 2025 08:27:24 -0500 Subject: [PATCH] Add container tools to IVR --- home/hosts/ivr/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/home/hosts/ivr/default.nix b/home/hosts/ivr/default.nix index ee25f70..c355260 100644 --- a/home/hosts/ivr/default.nix +++ b/home/hosts/ivr/default.nix @@ -38,6 +38,9 @@ in bitwarden-cli direnv home-manager + k9s + kubectl + minikube mysql-workbench nixStable pipenv-ivr @@ -50,6 +53,7 @@ in )) pre-commit robo3t + skaffold x ]; file.".pip/pip.conf".text = ( @@ -66,4 +70,13 @@ in homeDirectory = lib.mkForce "/home/gregory.hellings"; }; programs.tmux.shell = (lib.getExe x); + services.podman = { + enable = true; + settings = { + registries.search = [ + "docker.io" + "quay.io" + ]; + }; + }; }