fix missing {

This commit is contained in:
jopejoe1 2024-04-27 16:49:07 +02:00
parent 960b62f770
commit fd8044b62f

View file

@ -29,7 +29,7 @@
homeDirectory = config.users.users.jopejoe1.home;
stateVersion = config.system.stateVersion;
};
programs =
programs = {
nushell = {
enable = true;
extraConfig = ''
@ -51,24 +51,24 @@
}
}
'';
shellAliases = {
vi = "nvim";
vim = "nvim";
};
shellAliases = {
vi = "nvim";
vim = "nvim";
};
carapace.enable = true;
carapace.enableNushellIntegration = true;
};
carapace.enable = true;
carapace.enableNushellIntegration = true;
starship = {
enable = true;
settings = {
add_newline = true;
character = {
success_symbol = "[](bold green)";
error_symbol = "[](bold red)";
};
starship = {
enable = true;
settings = {
add_newline = true;
character = {
success_symbol = "[](bold green)";
error_symbol = "[](bold red)";
};
};
};
};
};
}