feat: add 'infra' module (and use on work host)

This commit is contained in:
2026-03-10 15:42:25 +01:00
parent 14f79f54ec
commit 19617326f0
2 changed files with 11 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ in
../../modules/docker
../../modules/git
../../modules/go
../../modules/infra
../../modules/k8s
../../modules/k8s/k9s.nix
../../modules/keepassxc

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
config = {
home.packages = with pkgs; [
opentofu
upbound
];
};
}