dotfiles/modules/suites/utils/default.nix

34 lines
490 B
Nix
Raw Normal View History

{
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
2023-05-21 02:12:45 +00:00
python3
ripgrep
usbutils
wget
];
};
}