mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 23:40:15 +00:00
more stuff
This commit is contained in:
@ -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;
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user