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
];
programs = enablePrograms {
# programs = enablePrograms {
programs = {
git = {
enable = true;
userName = "Tao Tien";
userEmail = "29749622+taotien@users.noreply.github.com";
};
nushell = {
enable = true;
configFile.source = ./config.nu;
envFile.source = ./env.nu;
};
starshell = {
enableNuShellIntegration = true;
settings = builtins.fromTOML (builtins.readFile ./starship.nix);
starship = {
enable = true;
enableNushellIntegration = true;
settings = builtins.fromTOML (builtins.readFile ./starship.toml);
};
wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
zoxide = {
enable = true;
enableNushellIntegration = true;
};
};