Home

dotnix @8d0c82d813c5ccdb6e69dbf7eb4a3554eb37715a - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / nogui / bat.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{pkgs, ...}: {
  programs.bat = {
    enable = true;
    config = {theme = "ctp-mocha";};
    themes = {
      ctp-mocha = {
        src = pkgs.fetchFromGitHub {
          owner = "catppuccin";
          repo = "bat";
          rev = "ba4d16880d63e656acced2b7d4e034e4a93f74b1";
          sha256 = "1g2r6j33f4zys853i1c5gnwcdbwb6xv5w6pazfdslxf69904lrg9";
        };
        file = "Catppuccin-mocha.tmTheme";
      };
    };
  };
}