mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
21 lines
372 B
Nix
21 lines
372 B
Nix
{ pkgs, lib, config, ... }: {
|
|
options.mods.terminal.tools.enable = lib.mkEnableOption "enables cli tools";
|
|
|
|
config = lib.mkIf config.mods.terminal.tools.enable {
|
|
home.packages = with pkgs; [
|
|
# libraries
|
|
glow
|
|
|
|
# file managing
|
|
fd
|
|
ripgrep
|
|
zoxide
|
|
trash-cli
|
|
|
|
# programs
|
|
bottom
|
|
zellij
|
|
fend
|
|
];
|
|
};
|
|
}
|