nix-config/hosts/opti/home.nix
2025-12-29 22:09:38 +02:00

47 lines
628 B
Nix

{ pkgs, ... }:
{
home.username = "wekuz";
home.homeDirectory = "/home/wekuz";
home.packages = with pkgs; [
neofetch
# Utilities
neovim
tmux
zip
xz
unzip
p7zip
zstd
ripgrep
file
which
btop
ncdu
lm_sensors
pciutils
usbutils
smartmontools
# Networking
mtr
iperf3
wget
dnsutils
ldns
ethtool
];
programs.git = {
enable = true;
userName = "Wekuz";
userEmail = "wekuz@duck.com";
extraConfig = { init.defaultBranch = "main"; };
};
programs.zsh = { enable = true; };
home.stateVersion = "25.11";
}