Files
nix-config/hosts/desktop/home.nix
2024-03-14 13:28:14 -05:00

56 lines
1008 B
Nix

{ pkgs, ... }:
{
home.username = "matt";
home.homeDirectory = "/home/matt";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
programs = {
fish.enable = true;
mangohud.enable = true;
java.enable = true;
};
programs.git = {
enable = true;
userName = "mjallen18";
userEmail = "matt.l.jallen@gmail.com";
aliases = {
co = "checkout";
ci = "commit";
cia = "commit --amend";
s = "status";
st = "status";
b = "branch";
# p = "pull --rebase";
pu = "push";
};
};
programs.command-not-found.enable = true;
home.packages = with pkgs; [
firefox
tree
lm_sensors
vmware-horizon-client
etcher
freerdp
neofetch
# gamescope # using chaotic git version
# gamescope-wsi # using chaotic git version
gamescope_git
gamescope-wsi_git
mangohud
goverlay
heroic
python3
virt-manager
# orca-slicer
protonvpn-gui
nixfmt
deadnix
];
}