summaryrefslogtreecommitdiff
path: root/modules/home-manager/starship.nix
blob: d74bb93f48688590b803eb32e31598407a200a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ inputs, ... }: {
  programs.starship = {
    enable = true;
   
    settings = {
      command_timeout = 1000;

      palette = "catppuccin_mocha";
    } // builtins.fromTOML (builtins.readFile "${inputs.catppuccin-starship}/themes/mocha.toml");
  };
}