From c3880ff7aea7ab99e1c410367ce9c74e32a91502 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 27 Nov 2023 15:58:26 +0300 Subject: [PATCH] Fix --- flake.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index ce11c4f..d911cde 100644 --- a/flake.nix +++ b/flake.nix @@ -7,11 +7,13 @@ with0x = theme // (builtins.mapAttrs (_: value: "0x" + value) onlyColors); withHashtag = theme // (builtins.mapAttrs (_: value: "#" + value) onlyColors); - in theme // { - inherit with0x withHashtag; - tmTheme = (import ./templates/tmTheme.nix) theme; - adwaitaGtkcss = (import ./templates/adwaitaGtkCss.nix) theme; + themeFull = theme // { + inherit with0x withHashtag; + }; + in themeFull // { + tmTheme = (import ./templates/tmTheme.nix) themeFull; + adwaitaGtkcss = (import ./templates/adwaitaGtkCss.nix) themeFull; }; - } // builtins.mapAttrs (_: self.custom) (import ./themes.nix); + } // builtins.mapAttrs (name: self.custom) (import ./themes.nix); }