nixos-config/.hm-modules/users/speccon18.nix
2023-03-26 00:42:59 -04:00

51 lines
No EOL
1.1 KiB
Nix

{ config, pkgs, lib, ... }:
{
programs = {
home-manager.users.speccon18 = {
home = {
username = "speccon18";
homeDirectory = "/home/speccon18";
stateVersion = "22.11";
packages = [
pkgs.firefox
pkgs.vscodium-fhs
pkgs.alacritty
pkgs.starship
pkgs.diff-so-fancy
];
};
};
direnv = {
enableZshIntegration = true;
enable = true;
};
starship = {
enable = true;
enableZshIntegration = true;
};
zsh = {
enable = lib.mkDefault true;
dotDir = ".config/zsh";
history = {
path = "$ZDOTDIR/.zsh_history";
save = 10000000;
};
};
git = {
enable = true;
userName = "specCon18";
userEmail = "specCon18@gmail.com";
# signing = {
# key = "71F252936D785219";
# signByDefault = true;
# };
diff-so-fancy = {
enable = true;
changeHunkIndicators = true;
};
lfs.enable = true;
};
};
}