Skip to content

Commit

Permalink
home/theme: fix theme names
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Jun 3, 2024
1 parent 0327adb commit f121f66
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions modules/home/theme/catppuccin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ in
theme = {
gtk = mkIf pkgs.stdenv.isLinux {
cursor = {
name = "Catppuccin-Macchiato-Blue-Cursors";
name = "catppuccin-macchiato-blue-cursors";
package = pkgs.catppuccin-cursors.macchiatoBlue;
size = 32;
};
Expand All @@ -88,7 +88,7 @@ in
};

theme = {
name = "Catppuccin-Macchiato-Blue-Dark";
name = "Catppuccin-Macchiato-Standard-Blue-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "blue" ];
variant = "macchiato";
Expand Down
4 changes: 2 additions & 2 deletions modules/home/theme/gtk/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ in
usePortal = mkBoolOpt false "Whether to use the GTK Portal.";

cursor = {
name = mkOpt types.str "Catppuccin-Macchiato-Blue-Cursors" "The name of the cursor theme to apply.";
name = mkOpt types.str "catppuccin-macchiato-blue-cursors" "The name of the cursor theme to apply.";
package = mkOpt types.package (
if pkgs.stdenv.isLinux then pkgs.catppuccin-cursors.macchiatoBlue else pkgs.emptyDirectory
) "The package to use for the cursor theme.";
Expand All @@ -39,7 +39,7 @@ in
};

theme = {
name = mkOpt types.str "Catppuccin-Macchiato-Blue-Dark" "The name of the theme to apply";
name = mkOpt types.str "Catppuccin-Macchiato-Standard-Blue-Dark" "The name of the theme to apply";
package = mkOpt types.package (pkgs.catppuccin-gtk.override {
accents = [ "blue" ];
size = "standard";
Expand Down
2 changes: 1 addition & 1 deletion modules/nixos/theme/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ in
enable = mkEnableOption "Enable custom theme use for applications.";

cursor = {
name = mkOpt types.str "Catppuccin-Macchiato-Blue-Cursors" "The name of the cursor theme to apply.";
name = mkOpt types.str "catppuccin-macchiato-blue-cursors" "The name of the cursor theme to apply.";
package = mkOpt types.package (
if pkgs.stdenv.isLinux then pkgs.catppuccin-cursors.macchiatoBlue else pkgs.emptyDirectory
) "The package to use for the cursor theme.";
Expand Down

0 comments on commit f121f66

Please sign in to comment.