flake/modules/nixos/programs/command-line.nix
2025-10-19 16:13:59 +03:00

48 lines
670 B
Nix

{ pkgs, inputs, lib, config, ... }:
{
config = lib.mkIf config.osbmModules.programs.commandLine.enable {
environment.systemPackages = with pkgs; [
wget
nano
git
lazygit
lazysql
git-lfs
gnumake
zip
fish
trash-cli
tmux
zoxide
htop
unzip
tlrc
btop
pciutils
cloc
neofetch
pfetch
inxi
jq
dig
onefetch
just
nixd
eza
gh
starship
tree
nix-output-monitor
yazi
ripgrep
nh
comma
nix-inspect
bat
fd
du-dust
duf
ncdu
];
};
}