oizys/modules/development/cli.nix

34 lines
445 B
Nix
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
inputs,
pkgs,
config,
mkDefaultOizysModule,
...
}:
mkDefaultOizysModule config "cli" {
programs.direnv.enable = true;
environment.sessionVariables = {
DIRENV_LOG_FORMAT = "direnv: %s";
};
environment.systemPackages = (with pkgs; [
chezmoi
zoxide
lsd
fzf
eza
# utils
fd
bat
delta
ripgrep
glow
btop
]
) ++ [
inputs.tsm.packages.${pkgs.system}.tsm]
;
}