nix-config/hosts/plexy/home.nix
Wekuz 77571565c2
Change stateVersion to 26.05
This should not be done normally but as the config isn't yet done and isn't used in a "production" environment it should be fine.
The main motivation is that `services.seerr` uses more logical `/var/lib/seerr` for config instead of `/var/lib/jellyseerr/config`.
Other changes can be found here: https://nixos.org/manual/nixos/stable/release-notes#sec-release-26.05-incompatibilities.
2026-06-21 00:42:22 +03:00

64 lines
826 B
Nix

{ pkgs, inputs, ... }:
{
home.username = "wekuz";
home.homeDirectory = "/home/wekuz";
home.packages = with pkgs; [
fastfetch
# Utilities
neovim
tmux
gnupg
zip
xz
unzip
p7zip
zstd
ripgrep
file
which
btop
ncdu
lm_sensors
pciutils
usbutils
smartmontools
# Networking
mtr
iperf3
wget
dnsutils
ldns
ethtool
];
programs.gpg = {
enable = true;
publicKeys = [
{
source = "${inputs.gpgKey}";
trust = 5;
}
];
};
programs.git = {
enable = true;
settings = {
user = {
name = "Wekuz";
email = "wekuz@duck.com";
};
init.defaultBranch = "main";
};
};
programs.zsh = {
enable = true;
};
home.stateVersion = "26.05";
}