dotfiles/modules/suites/utils/default.nix
Alejandro Angulo 58bdc7f6c5
Added bat module
Already had bat but I wanted to specify a specific theme.
2023-06-22 17:23:27 -07:00

34 lines
490 B
Nix

{
options,
config,
lib,
pkgs,
...
}:
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; [
alejandra
curl
deploy-rs
fd
file
htop
jq
killall
pre-commit
python3
ripgrep
usbutils
wget
];
};
}