27 lines
459 B
Nix
27 lines
459 B
Nix
{ ... }:
|
|
{
|
|
config.dendritic.features.cli-programs = {
|
|
homeModules = [
|
|
(
|
|
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
# let
|
|
# repeater = pkgs.callPackage ../../../../pkgs/repeater.nix { };
|
|
# in
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
|
vhs
|
|
libqalculate
|
|
nurl
|
|
nix-init
|
|
nixpkgs-review
|
|
repeater
|
|
];
|
|
}
|
|
)
|
|
];
|
|
};
|
|
}
|