{ config, pkgs, ... }: { home.username = "cori"; home.homeDirectory = "/home/cori"; fonts.fontconfig.enable = true; home.packages = with pkgs; [ vim polybar dmenu noto-fonts terminus_font wget rxvt-unicode arandr picom nitrogen flameshot dunst emacs pamixer pa_applet pcmanfm xsecurelock fira-code virt-manager lxappearance protontricks unzip spotify nasm ]; home.file = { ".Xresources" = { enable = true; source = ~/.config/urxvt/Xresources; }; }; xsession.windowManager.xmonad = { enable = true; enableContribAndExtras = true; config = ./xmonad/xmonad.hs; }; programs.git = { enable = true; settings = { user.name = "Cori Barker"; user.email = "coribarker2@gmail.com"; init.defaultBranch = "master"; }; }; home.stateVersion = "26.05"; }