feat(nixos): Update globals to Rose Pine

This commit is contained in:
punkfairie 2024-10-20 16:31:49 -07:00
parent c622a669d8
commit 05711392f8
Signed by: punkfairie
GPG key ID: 01823C057725C266

View file

@ -1,26 +1,24 @@
{ lib, ... }: {lib, ...}: {
{
config = { config = {
assertions = [ (lib.ctp.assertMinimumVersion "24.05") ]; assertions = [(lib.rp.assertMinimumVersion "24.05")];
}; };
options.catppuccin = { options.rose-pine = {
enable = lib.mkEnableOption "Catppuccin globally"; enable = lib.mkEnableOption "Rosé Pine globally";
flavor = lib.mkOption { flavor = lib.mkOption {
type = lib.ctp.types.flavorOption; type = lib.rp.types.flavorOption;
default = "mocha"; default = "main";
description = "Global Catppuccin flavor"; description = "Global Rosé Pine flavor";
}; };
accent = lib.mkOption { accent = lib.mkOption {
type = lib.ctp.types.accentOption; type = lib.rp.types.accentOption;
default = "mauve"; default = "love";
description = "Global Catppuccin accent"; description = "Global Rosé Pine accent";
}; };
sources = sources = let
let
defaultSources = import ../../.sources; defaultSources = import ../../.sources;
in in
lib.mkOption { lib.mkOption {