26 lines
363 B
Nix
26 lines
363 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
options = {
|
|
terminal = {
|
|
toys.enable = lib.mkEnableOption "enable terminal toys";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf config.terminal.toys.enable {
|
|
home.packages = with pkgs; [
|
|
asciiquarium-transparent
|
|
cava
|
|
bunnyfetch
|
|
nerdfetch
|
|
fastfetch
|
|
cmatrix
|
|
astroterm
|
|
]
|
|
};
|
|
}
|