This commit is contained in:
notgne2 2021-03-29 15:22:47 -07:00
commit d78da97be7
No known key found for this signature in database
GPG key ID: BB661E172B42A7F8
35 changed files with 6762 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ config, pkgs, lib, ... }: {
programs.home-manager.enable = true;
home.packages = with pkgs; [ zsh-powerlevel9k ];
programs.htop = {
enable = true;
meters.left = [
"LeftCPUs"
"Blank"
"Memory"
{
kind = "Uptime";
mode = 4;
}
];
meters.right = [ "RightCPUs" "Blank" "CPU" ];
fields = [
"USER"
"PRIORITY"
"NICE"
"M_RESIDENT"
"PERCENT_MEM"
"PERCENT_CPU"
"TIME"
"COMM"
];
showProgramPath = false;
showThreadNames = true;
delay = 10;
cpuCountFromZero = true;
};
programs.fish.shellAliases = {
node = "node --experimental-repl-await";
ls = "lsd";
bp = "npm version patch && npm publish && git push";
};
}