2024-10-20 05:07:48 +00:00
|
|
|
{lib, ...}: {
|
2024-06-04 11:29:28 +00:00
|
|
|
config = {
|
2024-10-20 05:07:48 +00:00
|
|
|
assertions = [(lib.rp.assertMinimumVersion "24.05")];
|
2024-06-04 11:29:28 +00:00
|
|
|
};
|
|
|
|
|
2024-10-20 05:07:48 +00:00
|
|
|
options.rose-pine = {
|
|
|
|
enable = lib.mkEnableOption "Rose Pine globally";
|
2024-04-22 17:39:12 +00:00
|
|
|
|
2024-05-22 00:23:55 +00:00
|
|
|
flavor = lib.mkOption {
|
2024-10-20 05:07:48 +00:00
|
|
|
type = lib.rp.types.flavorOption;
|
|
|
|
default = "main";
|
|
|
|
description = "Global Rose Pine flavor";
|
2023-11-03 22:13:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
accent = lib.mkOption {
|
2024-10-20 05:07:48 +00:00
|
|
|
type = lib.rp.types.accentOption;
|
|
|
|
default = "love";
|
|
|
|
description = "Global Rose Pine accent";
|
2023-11-03 22:13:02 +00:00
|
|
|
};
|
2024-05-13 20:33:16 +00:00
|
|
|
|
2024-10-20 05:07:48 +00:00
|
|
|
sources = let
|
|
|
|
defaultSources = import ../../.sources;
|
|
|
|
in
|
2024-05-28 08:15:28 +00:00
|
|
|
lib.mkOption {
|
|
|
|
type = lib.types.lazyAttrsOf lib.types.raw;
|
|
|
|
default = defaultSources;
|
|
|
|
defaultText = "{ ... }";
|
|
|
|
# HACK!
|
|
|
|
# without this, overriding one source will delete all others. -@getchoo
|
|
|
|
apply = lib.recursiveUpdate defaultSources;
|
|
|
|
description = "Port sources used across all options";
|
|
|
|
};
|
2023-11-03 22:13:02 +00:00
|
|
|
};
|
|
|
|
}
|