added homemandger directory

This commit is contained in:
Steven Carpenter 2023-02-11 15:30:09 -05:00
parent d9b0288868
commit fccb78d1ff
3 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ config, pkgs, lib, ... }:
{
# https://github.com/arouzing/nix/blob/main/hm/sky/home.nix
home = {
username = "speccon18";
homeDirectory = "/home/speccon18";
stateVersion = "22.11";
};
direnv = {
enableZshIntegration = true;
enable = true;
};
starship = {
enable = true;
enableZshIntegration = true;
};
zsh = {
enable = true;
};
}