37 lines
723 B
Nix
37 lines
723 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";
|
|
};
|
|
}
|