config.nix/modules/terminal/toys.nix
martyTF 5fa40025d0 we just gettin started
just a few more modules, like bitwarden, syncthing, screenshots
2025-12-20 05:59:46 +01:00

26 lines
364 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
];
};
}