17 lines
232 B
Nix
17 lines
232 B
Nix
{ ... }:
|
|
{
|
|
|
|
home-manager.users.willifan = {
|
|
programs = {
|
|
bash = {
|
|
enable = true;
|
|
};
|
|
starship = {
|
|
enableBashIntegration = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
# programs.bash.blesh.enable = true;
|
|
|
|
}
|