This repository has been archived on 2023-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
nixos/home.nix
2023-09-02 20:53:16 +02:00

58 lines
1 KiB
Nix

{ pkgs, stateVersion, ... }:
{
home = {
username = "pim";
homeDirectory = "/home/pim";
stateVersion = stateVersion;
packages = with pkgs; [];
};
programs = {
home-manager.enable = true;
alacritty.enable = true;
# ripgrep.enable = true;
firefox = {
enable = true;
profiles.default = {
id = 0;
isDefault = true;
};
};
bash = {
enable = true;
shellAliases = {
htop = "btop";
gp = "git push";
gco = "git checkout";
gd = "git diff";
gc = "git commit";
gpl = "git pull";
gb = "git branch";
ga = "git add";
gl = "git log";
};
};
direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv.enable = true;
};
git = {
enable = true;
userName = "Pim Kunis";
userEmail = "pim@kunis.nl";
extraConfig.core.editor = "vim";
};
};
# Let home-manager manage the X session
xsession = {
enable = true;
};
}