NOflake/users/tao/home.nix

21 lines
363 B
Nix
Raw Normal View History

2024-01-30 09:41:31 -08:00
{
2024-01-30 11:08:42 -08:00
imports = [
./helix.nix
];
programs.wezterm = {
2024-01-30 10:46:26 -08:00
enable = true;
2024-01-30 11:08:42 -08:00
extraConfig = builtins.readFile ./wezterm.lua;
2024-01-30 10:46:26 -08:00
};
programs.git = {
enable = true;
userName = "Tao Tien";
userEmail = "29749622+taotien@users.noreply.github.com";
};
2024-01-30 09:41:31 -08:00
home.username = "tao";
home.homeDirectory = "/home/tao";
home.stateVersion = "23.11";
}