working on tagss development env, devenv and added README

This commit is contained in:
Steven Carpenter 2023-02-14 00:45:36 -05:00
parent 4dd8b0acc6
commit b2e45bf27f
8 changed files with 69 additions and 33 deletions

View file

@ -0,0 +1,50 @@
{ config, pkgs, lib, ... }:
{
home-manager.users.speccon18 = {
home.packages = [
firefox
vscodium-fhs
alacritty
starship
diff-so-fancy
];
};
programs = {
home = {
username = "speccon18";
homeDirectory = "/home/speccon18";
stateVersion = "22.11";
};
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;
};
};
}