map enable don't work
This commit is contained in:
parent
4e56e3266a
commit
d5886c2611
1 changed files with 10 additions and 4 deletions
|
|
@ -6,27 +6,33 @@ in
|
||||||
./helix.nix
|
./helix.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = enablePrograms {
|
# programs = enablePrograms {
|
||||||
|
programs = {
|
||||||
git = {
|
git = {
|
||||||
|
enable = true;
|
||||||
userName = "Tao Tien";
|
userName = "Tao Tien";
|
||||||
userEmail = "29749622+taotien@users.noreply.github.com";
|
userEmail = "29749622+taotien@users.noreply.github.com";
|
||||||
};
|
};
|
||||||
|
|
||||||
nushell = {
|
nushell = {
|
||||||
|
enable = true;
|
||||||
configFile.source = ./config.nu;
|
configFile.source = ./config.nu;
|
||||||
envFile.source = ./env.nu;
|
envFile.source = ./env.nu;
|
||||||
};
|
};
|
||||||
|
|
||||||
starshell = {
|
starship = {
|
||||||
enableNuShellIntegration = true;
|
enable = true;
|
||||||
settings = builtins.fromTOML (builtins.readFile ./starship.nix);
|
enableNushellIntegration = true;
|
||||||
|
settings = builtins.fromTOML (builtins.readFile ./starship.toml);
|
||||||
};
|
};
|
||||||
|
|
||||||
wezterm = {
|
wezterm = {
|
||||||
|
enable = true;
|
||||||
extraConfig = builtins.readFile ./wezterm.lua;
|
extraConfig = builtins.readFile ./wezterm.lua;
|
||||||
};
|
};
|
||||||
|
|
||||||
zoxide = {
|
zoxide = {
|
||||||
|
enable = true;
|
||||||
enableNushellIntegration = true;
|
enableNushellIntegration = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue