Files
nix-config/modules/misc/cli-tools.nix
2024-04-16 21:31:31 +02:00

45 lines
694 B
Nix

{lib, config, pkgs, inputs, ... }:
with lib;
let
cfg = config.kop.cli-tools;
in
{
options.kop.cli-tools = {
enable = mkEnableOption "Enables cli-tools";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
wget
pciutils
nixos-option
btop
git
killall
xclip
usbutils
inputs.agenix.packages."x86_64-linux".default
fastfetch
pdfgrep
ncdu
glxinfo
vulkan-tools
ffmpeg
nethogs
dig
smartmontools
bc
xxd
tldr
file
unzip
lsof
screen
tmux
fatrace # monitor filesystem events
ripgrep
];
};
}