nixfiles/home-manager/users/chekkie.nix
2022-10-03 17:08:32 -07:00

42 lines
727 B
Nix

{
config,
pkgs,
lib,
...
}: {
programs.home-manager.enable = true;
home.packages = with pkgs; [zsh-powerlevel9k];
programs.htop = {
enable = true;
settings = {
cpu_count_from_zero = true;
delay = 10;
fields = [
"USER"
"PRIORITY"
"NICE"
"M_RESIDENT"
"PERCENT_MEM"
"PERCENT_CPU"
"TIME"
"COMM"
];
left_meters = [
"LeftCPUs"
"Blank"
"Memory"
"Uptime"
];
right_meters = ["RightCPUs" "Blank" "CPU"];
};
};
programs.fish.shellAliases = {
node = "node --experimental-repl-await";
ls = "lsd";
bp = "npm version patch && npm publish && git push";
};
}