summaryrefslogtreecommitdiff
path: root/options.nix
diff options
context:
space:
mode:
Diffstat (limited to 'options.nix')
-rw-r--r--options.nix15
1 files changed, 14 insertions, 1 deletions
diff --git a/options.nix b/options.nix
index a1fce0e..d7ee564 100644
--- a/options.nix
+++ b/options.nix
@@ -71,7 +71,7 @@ with lib; let
# theme color options
- colorOpts = _: {
+ colorOpts = self: {
options = {
name = mkOption {
type = types.str;
@@ -113,6 +113,18 @@ with lib; let
description = "Primary accent color";
};
+ secondary = mkOption {
+ type = types.str;
+ description = "Secondary accent color";
+ default = self.primary;
+ };
+
+ tertiary = mkOption {
+ type = types.str;
+ description = "tertiary accent color";
+ default = self.secondary;
+ };
+
success = mkOption {
type = types.str;
description = "Success color";
@@ -467,6 +479,7 @@ in {
waybar.enable = mkEnableOption "Enable the waybar bar.";
wofi.enable = mkEnableOption "Enable the wofi launcher.";
rofi.enable = mkEnableOption "Enable the rofi launcher.";
+ caelestia.enable = mkEnableOption "Enable the caelestia service.";
};
#