mirror of
https://codeberg.org/muon/home.git
synced 2025-12-05 23:57:46 +00:00
26 lines
465 B
Nix
26 lines
465 B
Nix
{ pkgs, lib, config, ... }: {
|
|
options.mods.terminal.tools.enable = lib.mkEnableOption "enables cli tools";
|
|
|
|
config = lib.mkIf config.mods.terminal.tools.enable {
|
|
programs.nh = {
|
|
enable = true;
|
|
flake = config.xdg.configFile."home";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
# libraries
|
|
glow
|
|
|
|
# file managing
|
|
fd
|
|
ripgrep
|
|
zoxide
|
|
trash-cli
|
|
|
|
# programs
|
|
bottom
|
|
zellij
|
|
fend
|
|
];
|
|
};
|
|
}
|