map enable don't work

This commit is contained in:
Tao Tien 2024-02-01 10:00:03 -08:00
parent 4e56e3266a
commit d5886c2611

View file

@ -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;
}; };
}; };