From 8894f7e861ae0e1dbebb72dc31072c5d06de2e09 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Fri, 6 Sep 2024 08:38:36 +0200 Subject: [PATCH] colors: progress --- modules/options/style/colors.nix | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/modules/options/style/colors.nix b/modules/options/style/colors.nix index 4964848..ac71257 100644 --- a/modules/options/style/colors.nix +++ b/modules/options/style/colors.nix @@ -1,24 +1,22 @@ -{ - config, - lib, - ... -}: let -inherit (lib) mkOption; -inherit (lib.types) str; +{lib, ...}: let + inherit (lib) mkOption; + inherit (lib.types) str; in { options.modules.style = { colorScheme = { name = mkOption { -type = str; -default = "catppuccin-mocha"; + type = str; + default = "Catppuccin Mocha"; }; slug = { + type = str; + default = "catppuccin-mocha"; }; variant = { }; - colors = mkOption { - - }; + colors = + mkOption { + }; }; }; }