diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-06-19 12:34:27 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-06-19 12:39:06 -0700 |
| commit | 256ad89de15f1e1d349146cc2918a5e5d0f77eb0 (patch) | |
| tree | 2676598dc092f4960f551b7276f09d8a074eb7ef | |
| parent | 388cddd75aed3191d5b3709ca8cb954e5066f50b (diff) | |
Remove unused color config
| -rw-r--r-- | home/colors.nix | 30 | ||||
| -rw-r--r-- | home/default.nix | 1 |
2 files changed, 0 insertions, 31 deletions
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" - ]); -} diff --git a/home/default.nix b/home/default.nix index dad4763..a7eceb9 100644 --- a/home/default.nix +++ b/home/default.nix @@ -2,7 +2,6 @@ { imports = [ - ./colors.nix ./discord.nix ./eww.nix ./fastfetch.nix |