NOflake/users/tao/home.nix

46 lines
944 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
];
2024-02-01 08:56:18 -08:00
programs.nushell = {
2024-01-30 10:46:26 -08:00
enable = true;
2024-02-01 08:56:18 -08:00
configFile.source = ./config.nu;
envFile.source = ./env.nu;
2024-01-30 10:46:26 -08:00
};
programs.git = {
enable = true;
userName = "Tao Tien";
userEmail = "29749622+taotien@users.noreply.github.com";
};
2024-02-01 08:56:18 -08:00
programs.starship = {
enable = true;
enableNushellIntegration = true;
settings = {
nix_shell = {
disabled = false;
impure_msg = ";[impure shell](bold red)";
pure_msg = ";[pure shell](bold green)";
unknown_msg = ";[unknown shell](bold yellow)";
format = "via [ $state( \($name\))](bold blue)";
};
};
};
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
programs.zoxide = {
enable = true;
enableNushellIntegration = true;
};
2024-01-30 09:41:31 -08:00
home.username = "tao";
home.homeDirectory = "/home/tao";
home.stateVersion = "23.11";
}