more stuff

This commit is contained in:
Noah Masur
2025-02-01 16:10:16 -05:00
parent ea3ab18cca
commit 1226eafef2
34 changed files with 291 additions and 308 deletions

View File

@ -12,18 +12,30 @@ in
options.nmasur.profiles.common.enable = lib.mkEnableOption "Common home-manager config";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
dig # DNS lookup
fd # find
htop # Show system processes
killall # Force quit
inetutils # Includes telnet, whois
jq # JSON manipulation
rsync # Copy folders
ripgrep # grep
sd # sed
unzip # Extract zips
home.packages = [
pkgs.dig # DNS lookup
pkgs.fd # find
pkgs.htop # Show system processes
pkgs.killall # Force quit
pkgs.inetutils # Includes telnet, whois
pkgs.jq # JSON manipulation
pkgs.rsync # Copy folders
pkgs.ripgrep # grep
pkgs.sd # sed
pkgs.unzip # Extract zips
];
nmasur.presets = {
programs = {
bat.enable = true;
ripgrep.enable = true;
fd.enable = true;
};
services = {
loadkey.enable = lib.mkDefault true;
};
};
};
}