diff options
Diffstat (limited to 'home.nix')
| -rw-r--r-- | home.nix | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/home.nix b/home.nix new file mode 100644 index 0000000..fec7529 --- /dev/null +++ b/home.nix @@ -0,0 +1,49 @@ +{ 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 + ]; + + 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"; +} |
