chore: move user config to home-manager

This commit is contained in:
2025-11-16 16:57:16 +01:00
parent 5f336d9b53
commit ff7fc44a3b
3 changed files with 96 additions and 8 deletions

50
home.nix Normal file
View File

@@ -0,0 +1,50 @@
{ config, pkgs, ... }:
{
# user config
home.username = "aaron";
home.homeDirectory = "/home/aaron";
# Packages that should be installed to the user profile
home.packages = with pkgs; [
fastfetch
zip
xz
unzip
p7zip
jq
mtr
iperf3
dnsutils
ldns
socat
nmap
cowsay
file
which
tree
zstd
gnupg
btop
iotop
iftop
strace
ltrace
lsof
sysstat
lm_sensors
ethtool
pciutils
usbutils
];
# configure git
programs.git = {
enable = true;
userName = "aaron";
userEmail = "aaron@0x29a.ch";
};
# starting version
home.stateVersion = "25.05";
}