less common packages

This commit is contained in:
notgne2 2022-12-23 19:12:05 -07:00
parent c06d1c3138
commit df3a6977fc
Signed by: notgne2
SSH Key Fingerprint: SHA256:qlFCAimT/PvNIG3u+aYT9pIqFCWgu6sNsWjpV1vHLIE
8 changed files with 17 additions and 53 deletions

View File

@ -65,22 +65,6 @@
# package list
environment.systemPackages = with pkgs; [
psmisc
usbutils
pciutils
cpufrequtils
intel-gpu-tools
lshw
lsof
bind
file
iotop
htop
glances
powertop
exfat
# to stop NixOS breaking

View File

@ -48,6 +48,20 @@ inputs: {
jq
ripgrep
lsd
psmisc
usbutils
pciutils
cpufrequtils
lshw
lsof
bind
file
iotop
htop
powertop
];
programs.starship = {

View File

@ -22,7 +22,7 @@ inputbar {
}
textbox {
padding: 4px 8px;
padding: 4px 6px;
background-color: @alternate-normal-background;
}

View File

@ -5,31 +5,4 @@
...
}: {
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"];
};
};
}

View File

@ -5,6 +5,4 @@
...
}: {
programs.home-manager.enable = true;
home.packages = with pkgs; [zsh-powerlevel9k];
}

View File

@ -14,10 +14,8 @@ in {
home.packages = with pkgs; [
bat
zsh-powerlevel9k
fzf # also needed for fzf.vim
xclip # needed for nvim
nixpkgs-fmt
fzf
xclip
alejandra
];

View File

@ -4,7 +4,6 @@
lib,
...
}: {
# config for me
users.users.glooder = {
isNormalUser = true;
useDefaultShell = true;

View File

@ -4,8 +4,6 @@
lib,
...
}: {
nix.trustedUsers = ["notgne2"];
users.users.notgne2 = {
isNormalUser = true;
home = "/home/notgne2";