dotfiles/modules/suites/utils/default.nix
Alejandro Angulo f04616721d
Small nextcloud improvements
- Configured redis
- Added old data (node system now imports the zfs pool with the data)
2023-07-09 15:58:51 -07:00

40 lines
611 B
Nix

{
options,
config,
lib,
pkgs,
inputs,
...
}:
with lib; let
cfg = config.aa.suites.utils;
in {
options.aa.suites.utils = with lib.types; {
enable = mkEnableOption "common configuration";
};
config = mkIf cfg.enable {
aa.apps.bat.enable = true;
environment.systemPackages = with pkgs; [
inputs.agenix.packages.x86_64-linux.default
alejandra
curl
deploy-rs
fd
file
htop
jq
killall
pre-commit
python3
ripgrep
usbutils
wget
lsof
bind # for dig
tcpdump
progress
];
};
}