config.nix/modules/apps/terminal/base-packages.nix
2026-04-01 16:00:52 +02:00

33 lines
467 B
Nix

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