Jafner.net/nix/dungeon-master/home-manager/devops.nix
Joey Hafner 7f7c44a164
Home-manager updates for Dungeon-master:
- Replace custom bwcli + fzf script with rofi-rbw
- Remove TeamsForLinux and Discord (official client) from Flatpak install list
- Add Devops tools package list
2024-10-21 14:59:54 -07:00

18 lines
304 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
terraform
sops ssh-to-age age
doctl
k3s
(wrapHelm kubernetes-helm {
plugins = with pkgs.kubernetes-helmPlugins; [
helm-diff
helm-secrets
helm-s3
helm-git
];
})
helmfile-wrapped
];
}