dotfiles/provision/nixos/hosts/kestrel/home-configuration.nix

19 lines
345 B
Nix
Raw Normal View History

2023-07-10 17:52:34 -07:00
{ config, pkgs, user, ... }:
{
home.username = "${user}";
home.homeDirectory = "/home/${user}";
programs.home-manager.enable = true;
2023-09-01 23:30:20 -07:00
# Setup git
2023-09-02 11:06:41 -07:00
programs.git = {
enable = true;
userName = "starr-dusT";
userEmail = "starrtyler88@gmail.com";
};
2023-09-01 23:30:20 -07:00
2023-07-10 17:52:34 -07:00
home.packages = with pkgs; [
];
2023-07-11 21:17:48 -07:00
home.stateVersion = "23.05";
2023-07-10 17:52:34 -07:00
}