From 1a0ea27fcd7836b856576aafffa715814836c3ca Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 23 Dec 2021 04:36:55 +0100 Subject: [PATCH] Remove overkill recursion --- nixpkgs/common/colors.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixpkgs/common/colors.nix b/nixpkgs/common/colors.nix index bbf8400..11edaad 100644 --- a/nixpkgs/common/colors.nix +++ b/nixpkgs/common/colors.nix @@ -1,7 +1,7 @@ rec { - monokai = rec { - foreground = white; - background = black; + monokai = { + foreground = monokai.white; + background = monokai.black; black = "#272822"; red = "#f92672"; green = "#a6e22e";