summaryrefslogtreecommitdiff
path: root/users/seth/programs/starship/default.nix
blob: 099761bd47d0aee32f674ebcd50a51c2aad27eb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  programs.starship = {
    enable = true;
    enableBashIntegration = false;
    enableZshIntegration = false;
    settings =
      {
        format = "$all";
        palette = "catppuccin_mocha";
        command_timeout = 250;
      }
      // fromTOML (builtins.readFile ./starship.toml);
  };
}