config.nix/modules/apps/terminal/base-packages.nix
2026-03-30 22:03:03 +02:00

31 lines
440 B
Nix

{
config,
pkgs,
inputs,
lib,
...
}:
{
options = {
apps.terminal.toys = lib.mkEnableOption "enable terminal toys";
};
config = {
environment.systemPackages =
with pkgs;
[
unzip
btop
]
++ lib.mkIf config.apps.terminal.toys [
asciiquarium-transparent
cava
bunnyfetch
nerdfetch
fastfetch
cmatrix
astroterm
];
};
}