summaryrefslogtreecommitdiff
path: root/users/seth/programs/starship/default.nix
blob: a1b9104ca2b8d0ba8ab731ef7dbc334b383032c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  programs.starship = {
    enable = true;

    enableBashIntegration = false;
    enableZshIntegration = false;

    settings =
      {
        format = "$all";
        palette = "catppuccin_mocha";
        command_timeout = 250;
      }
      // fromTOML (builtins.readFile ./starship.toml);
  };
}