nu et al
This commit is contained in:
parent
3d03041c34
commit
14912f98c5
3 changed files with 920 additions and 2 deletions
|
|
@ -3,9 +3,10 @@
|
|||
./helix.nix
|
||||
];
|
||||
|
||||
programs.wezterm = {
|
||||
programs.nushell = {
|
||||
enable = true;
|
||||
extraConfig = builtins.readFile ./wezterm.lua;
|
||||
configFile.source = ./config.nu;
|
||||
envFile.source = ./env.nu;
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
|
|
@ -14,6 +15,30 @@
|
|||
userEmail = "29749622+taotien@users.noreply.github.com";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
|
||||
home.username = "tao";
|
||||
home.homeDirectory = "/home/tao";
|
||||
home.stateVersion = "23.11";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue