aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/starship/settings.nix
blob: e7a27733d9003d84f8934f61f6e3a551c7d262fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ config, lib, pkgs, ... }:

with lib;

{
  config = {
    programs.starship = {
      enable = true;

      settings = mkMerge [
        {
          add_newline = false;
          prompt_order = [ "line_break" "package" "line_break" "character" ];
          scan_timeout = 10;
          character.symbol = "➜";
          package.disabled = true;
          memory_usage.threshold = -1;
          aws.style = "bold blue";
          battery = {
            charging_symbol = "⚡️";
            display = [{
              threshold = 10;
              style = "bold red";
            }];
          };
        }

        {
          aws.disabled = true;

          battery.display = [{
            threshold = 30;
            style = "bold yellow";
          }];
        }
      ];
    };

    nixpkgs.overlays = [
      (self: super: { starship = pkgs.writeScriptBin "dummy-starship" ""; })
    ];

    nmt.script = ''
      assertFileContent \
        home-files/.config/starship.toml \
        ${./settings-expected.toml}
    '';
  };
}