diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2024-02-02 13:37:54 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2024-02-02 13:37:54 -0700 |
| commit | e776c8fb5aed61d0f5f27a87c9c419dc07a13480 (patch) | |
| tree | bce36bc077042d60c0cc162205440df6b783acdf /modules/home-manager/bat.nix | |
| parent | 930ed23a02259a35c404f2fef0ab61ca620a0e4b (diff) | |
| parent | 60568d28f263c74847f06ec6bc4c8ba7f7125dce (diff) | |
merge
Diffstat (limited to 'modules/home-manager/bat.nix')
| -rw-r--r-- | modules/home-manager/bat.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/home-manager/bat.nix b/modules/home-manager/bat.nix index 5a9802e..3a06076 100644 --- a/modules/home-manager/bat.nix +++ b/modules/home-manager/bat.nix @@ -1,4 +1,4 @@ -{ catppuccin-bat, ...}: { +{ inputs, ...}: { # a cat(1) clone with syntax highlighting and Git integration. programs.bat = { enable = true; @@ -7,7 +7,7 @@ theme = "catppuccin-mocha"; }; themes = { - catppuccin-mocha = builtins.readFile "${catppuccin-bat}/Catppuccin-mocha.tmTheme"; + catppuccin-mocha = builtins.readFile "${inputs.catppuccin-bat}/Catppuccin-mocha.tmTheme"; }; }; } |
