From 256ad89de15f1e1d349146cc2918a5e5d0f77eb0 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Wed, 19 Jun 2024 12:34:27 -0700 Subject: Remove unused color config --- home/colors.nix | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 home/colors.nix (limited to 'home/colors.nix') diff --git a/home/colors.nix b/home/colors.nix deleted file mode 100644 index 42235bf..0000000 --- a/home/colors.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ lib, ... }: - -with lib; - -{ - options.colors = - let - mkColorOption = name: { - inherit name; - value = mkOption { - type = types.strMatching "[a-fA-F0-9]{6}"; - description = "Color ${name}."; - }; - }; - in listToAttrs (map mkColorOption [ - "primary" "secondary" - "foreground" "foregroundAlt" - "background" "backgroundAlt" - - "accent" - - "black" "red" "green" "yellow" "blue" "magenta" "cyan" "white" - "brightBlack" "brightRed" "brightGreen" "brightYellow" "brightBlue" "brightMagenta" "brightCyan" "brightWhite" - - "bg" "bg0" "bg1" "bg2" "bg3" "bg4" - "fg" "fg0" "fg1" "fg2" "fg3" "fg4" - - "orange" "brightOrange" - ]); -} -- cgit v1.2.3