From 46539172a5d6a1720a156e0ac55aa150614370d5 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 12 Dec 2023 15:23:33 +0300 Subject: [PATCH] Fix bat theme example in readme --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 561cb77..0491d15 100644 --- a/README.md +++ b/README.md @@ -348,6 +348,7 @@ Here is a minimal usage example: }; outputs = { nixpkgs, themes, ... }: let + pkgs = import nixpkgs { system = "x86_64-linux"; }; theme = themes.tango; in { nixosConfigurations.myhost = nixpkgs.lib.nixosSystem { @@ -383,8 +384,8 @@ Here is a minimal usage example: # Using templates??? Wow, that's so cool! programs.bat = { - config.theme = "tango"; - themes.tango = theme.tmTheme; + config.theme = "base16"; + themes.base16.src = pkgs.writeText "base16.tmTheme" theme.tmTheme; }; }; }