main
 1{
 2  flake.modules.homeManager.core = _: {
 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 = builtins.fromTOML (builtins.readFile ./starship.toml);
11    };
12  };
13}