NOflake/users/tao/home.nix
2024-01-30 11:08:42 -08:00

20 lines
363 B
Nix

{
imports = [
./helix.nix
];
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
programs.git = {
enable = true;
userName = "Tao Tien";
userEmail = "29749622+taotien@users.noreply.github.com";
};
home.username = "tao";
home.homeDirectory = "/home/tao";
home.stateVersion = "23.11";
}