feat: Update base module name to rose-pine

This commit is contained in:
punkfairie 2024-10-19 10:53:12 -07:00
parent 847491e797
commit 326ef12cfe
Signed by: punkfairie
GPG key ID: 01823C057725C266
3 changed files with 60 additions and 81 deletions

View file

@ -1,8 +1,8 @@
{ {
description = "Soothing pastel theme for Nix"; description = "Soho vibes for Nix";
outputs = _: { outputs = _: {
homeManagerModules.catppuccin = import ./modules/home-manager; homeManagerModules.rose-pine = import ./modules/home-manager;
nixosModules.catppuccin = import ./modules/nixos; nixosModules.rose-pine = import ./modules/nixos;
}; };
} }

View file

@ -3,54 +3,42 @@
lib, lib,
pkgs, pkgs,
... ...
}: }: let
let
# this is a recursive attribute with all the functions below # this is a recursive attribute with all the functions below
inherit (lib) ctp; inherit (lib) rp;
in in {
{
# string -> type -> string -> a # string -> type -> string -> a
# this is an internal function and shouldn't be # this is an internal function and shouldn't be
# used unless you know what you're doing. it takes # used unless you know what you're doing. it takes
# a string (the name of the property, i.e., flavor # a string (the name of the property, i.e., flavor
# or accent), the type of the property, the name of # or accent), the type of the property, the name of
# the module, followed by local config attrset # the module, followed by local config attrset
mkBasicOpt = mkBasicOpt = attr: type: name:
attr: type: name:
lib.mkOption { lib.mkOption {
inherit type; inherit type;
default = config.catppuccin.${attr}; default = config.rose-pine.${attr};
description = "Catppuccin ${attr} for ${name}"; description = "Rose Pine ${attr} for ${name}";
}; };
# string -> a # string -> a
# this creates a flavor option for modules # this creates a flavor option for modules
# the first string should be the name of the module, # the first string should be the name of the module,
# followed by the local config attrset # followed by the local config attrset
mkFlavorOpt = ctp.mkBasicOpt "flavor" ctp.types.flavorOption; mkFlavorOpt = rp.mkBasicOpt "flavor" rp.types.flavorOption;
types = { types = {
flavorOption = lib.types.enum [ flavorOption = lib.types.enum [
"latte" "dawn"
"frappe" "moon"
"macchiato" "main"
"mocha"
]; ];
accentOption = lib.types.enum [ accentOption = lib.types.enum [
"blue" "love"
"flamingo" "gold"
"green" "rose"
"lavender" "pine"
"maroon" "foam"
"mauve" "iris"
"peach"
"pink"
"red"
"rosewater"
"sapphire"
"sky"
"teal"
"yellow"
]; ];
}; };
@ -58,51 +46,43 @@ in
# this capitalizes the first letter in a string, # this capitalizes the first letter in a string,
# which is sometimes needed in order to format # which is sometimes needed in order to format
# the names of themes correctly # the names of themes correctly
mkUpper = mkUpper = str:
str:
(lib.toUpper (builtins.substring 0 1 str)) + (builtins.substring 1 (builtins.stringLength str) str); (lib.toUpper (builtins.substring 0 1 str)) + (builtins.substring 1 (builtins.stringLength str) str);
# a -> path -> a # a -> path -> a
# fromJSON but for yaml (and without readFile) # fromJSON but for yaml (and without readFile)
# a should be the local pkgs attrset # a should be the local pkgs attrset
fromYaml = fromYaml = file: let
file: # convert to json
let json = pkgs.runCommand "converted.json" {} ''
# convert to json ${lib.getExe pkgs.yj} < ${file} > $out
json = pkgs.runCommand "converted.json" { } '' '';
${lib.getExe pkgs.yj} < ${file} > $out in
'';
in
builtins.fromJSON (builtins.readFile json); builtins.fromJSON (builtins.readFile json);
# a -> path -> a # a -> path -> a
# fromJSON but for ini (and without readFile) # fromJSON but for ini (and without readFile)
# a should be the local pkgs attrset # a should be the local pkgs attrset
fromINI = fromINI = file: let
file: # convert to json
let json = pkgs.runCommand "converted.json" {} ''
# convert to json ${lib.getExe pkgs.jc} --ini < ${file} > $out
json = pkgs.runCommand "converted.json" { } '' '';
${lib.getExe pkgs.jc} --ini < ${file} > $out in
'';
in
builtins.fromJSON (builtins.readFile json); builtins.fromJSON (builtins.readFile json);
# a -> path -> a # a -> path -> a
# fromJSON but for raw ini (and without readFile) # fromJSON but for raw ini (and without readFile)
# a should be the local pkgs attrset # a should be the local pkgs attrset
fromINIRaw = fromINIRaw = file: let
file: inherit (builtins) fromJSON readFile;
let
inherit (builtins) fromJSON readFile;
# convert to json # convert to json
json = json = with pkgs;
with pkgs; runCommand "converted.json" {} ''
runCommand "converted.json" { } '' ${jc}/bin/jc --ini -r < ${file} > $out
${jc}/bin/jc --ini -r < ${file} > $out '';
''; in
in
fromJSON (readFile json); fromJSON (readFile json);
# string -> a # string -> a
@ -111,24 +91,24 @@ in
# of the module, while `enableDefault` is a boolean # of the module, while `enableDefault` is a boolean
# representing the default of the created `enable` # representing the default of the created `enable`
# option # option
mkCatppuccinOpt = mkRosePineOpt = {
{ name,
name, enableDefault ? config.rose-pine.enable,
enableDefault ? config.catppuccin.enable, }: {
}: enable =
{ lib.mkEnableOption "Rose Pine theme for ${name}"
enable = lib.mkEnableOption "Catppuccin theme for ${name}" // { // {
default = enableDefault; default = enableDefault;
}; };
flavor = ctp.mkFlavorOpt name; flavor = rp.mkFlavorOpt name;
}; };
# string -> a # string -> a
# this creates an accent option for modules # this creates an accent option for modules
# the first string should be the name of the module, # the first string should be the name of the module,
# followed by the local config attrset # followed by the local config attrset
mkAccentOpt = ctp.mkBasicOpt "accent" ctp.types.accentOption; mkAccentOpt = rp.mkBasicOpt "accent" rp.types.accentOption;
# a -> a -> a # a -> a -> a
# see https://nlewo.github.io/nixos-manual-sphinx/development/option-types.xml.html # see https://nlewo.github.io/nixos-manual-sphinx/development/option-types.xml.html
@ -140,23 +120,22 @@ in
# returns the current release version of nixos or home-manager. throws an evaluation error if neither are # returns the current release version of nixos or home-manager. throws an evaluation error if neither are
# found # found
getModuleRelease = getModuleRelease =
config.home.version.release or config.system.nixos.release config.home.version.release
or (throw "Couldn't determine release version!"); or config.system.nixos.release
or (throw "Couldn't determine release version!");
# string -> a -> a # string -> a -> a
# if the current module release is less than `minVersion`, all options are made no-ops with # if the current module release is less than `minVersion`, all options are made no-ops with
# `lib.mkSinkUndeclaredOptions` # `lib.mkSinkUndeclaredOptions`
mkVersionedOpts = mkVersionedOpts = minVersion: option:
minVersion: option: if lib.versionAtLeast rp.getModuleRelease minVersion
if lib.versionAtLeast ctp.getModuleRelease minVersion then then option
option else lib.mkSinkUndeclaredOptions {};
else
lib.mkSinkUndeclaredOptions { };
# string -> a # string -> a
# this is to ensure users are running a supported version of nixos/home-manager # this is to ensure users are running a supported version of nixos/home-manager
assertMinimumVersion = version: { assertMinimumVersion = version: {
assertion = lib.versionAtLeast ctp.getModuleRelease version; assertion = lib.versionAtLeast rp.getModuleRelease version;
message = "`catppuccin/nix` requires at least version ${version} of NixOS/home-manager"; message = "`rose-pine/nix` requires at least version ${version} of NixOS/home-manager";
}; };
} }

View file

@ -6,7 +6,7 @@
}: }:
lib.extend ( lib.extend (
final: _: { final: _: {
ctp = import ./. { rp = import ./. {
inherit config pkgs; inherit config pkgs;
lib = final; lib = final;
}; };