den
1{
2 den.default.homeManager = {
3 programs.starship = {
4 enable = true;
5
6 enableBashIntegration = true;
7 enableFishIntegration = true;
8
9 # Read from file because I'm too lazy to convert it to Nix expr.
10 settings = fromTOML (builtins.readFile ./starship.toml);
11 };
12 };
13}