31 lines
440 B
Nix
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
|
|
];
|
|
};
|
|
}
|