dotfiles/modules/nixos/suites/utils/default.nix
alejandro-angulo a3ac254912
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
Fix issues after updating lockfile
2026-01-19 08:48:51 -08:00

47 lines
654 B
Nix

{
config,
lib,
pkgs,
inputs,
...
}:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.aa.suites.utils;
in
{
options.aa.suites.utils = {
enable = mkEnableOption "common configuration";
};
config = mkIf cfg.enable {
environment.systemPackages = (
with pkgs;
[
bat
bind # for dig
curl
deploy-rs
dust
fd
file
gnupg
htop
jq
killall
lsof
nixfmt
pre-commit
progress
python3
ragenix
ripgrep
sqlite
tcpdump
usbutils
wget
]
);
};
}