30 lines
475 B
Nix
30 lines
475 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [
|
|
git jujutsu
|
|
];
|
|
|
|
username = "drew";
|
|
homeDirectory = "/home/drew";
|
|
|
|
stateVersion = "23.11";
|
|
|
|
};
|
|
programs = {
|
|
home-manager.enable = true;
|
|
|
|
git = {
|
|
enable = true;
|
|
userEmail = "dgalbraith33@gmail.com";
|
|
userName = "Drew Galbraith";
|
|
extraConfig = {
|
|
core = {
|
|
editor = "vim";
|
|
};
|
|
init.defaultBranch = "main";
|
|
};
|
|
};
|
|
};
|
|
}
|