dotfiles/modules/nixos/suites/utils/default.nix
alejandro-angulo 9e9e4c5fd6
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 13s
Switched from alejandra to nixfmt(-rfc-style)
2024-12-27 23:41:59 -08:00

44 lines
694 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
du-dust
fd
file
gnupg
htop
jq
killall
lsof
nixfmt-rfc-style
pre-commit
progress
python3
ripgrep
sqlite
tcpdump
usbutils
wget
])
++ [inputs.agenix.packages.x86_64-linux.default];
};
}