This commit is contained in:
gwg313 2026-04-18 23:59:55 -04:00
parent 20453cfebe
commit 4bf635e863
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
2 changed files with 20 additions and 0 deletions

View file

@ -79,6 +79,7 @@
developer.features = [
"jujutsu"
"developer-cli"
"cli-programs"
"editor-neovim"
"containers-podman"
"ops-k8s"

View file

@ -0,0 +1,19 @@
{ ... }:
{
config.dendritic.features.cli-programs = {
homeModules = [
(
{
pkgs,
...
}:
{
home.packages = with pkgs; [
vhs
];
}
)
];
};
}