Files
nix/home/modules/infra/default.nix

11 lines
107 B
Nix

{ pkgs, ... }:
{
config = {
home.packages = with pkgs; [
opentofu
upbound
];
};
}