diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2025-11-09 06:57:01 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2025-11-09 06:57:01 -0700 |
| commit | f08deaf6b97072b1472d1ef143c2b476da91e995 (patch) | |
| tree | d7f0d34643748f3b2f28168ebc2edec0ab0f4087 | |
| parent | cacf90a61716a03ba6d40a40ec2db037c6c22cbd (diff) | |
source theme directly instead of converting to string and back
| -rw-r--r-- | modules/home-manager/bat.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/home-manager/bat.nix b/modules/home-manager/bat.nix index e6984de..354eff0 100644 --- a/modules/home-manager/bat.nix +++ b/modules/home-manager/bat.nix @@ -8,7 +8,9 @@ theme = "catppuccin-mocha"; }; themes = { - catppuccin-mocha = builtins.readFile "${inputs.catppuccin-bat}/themes/Catppuccin Mocha.tmTheme"; + catppuccin-mocha = { + src = "${inputs.catppuccin-bat}/themes/Catppuccin Mocha.tmTheme"; + }; }; }; } |
