From f121f660e9e5740619433205c064aa1d53f3c60f Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Mon, 3 Jun 2024 10:41:54 -0500 Subject: [PATCH] home/theme: fix theme names --- modules/home/theme/catppuccin/default.nix | 4 ++-- modules/home/theme/gtk/default.nix | 4 ++-- modules/nixos/theme/default.nix | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/home/theme/catppuccin/default.nix b/modules/home/theme/catppuccin/default.nix index 3ecec14a7..d3f4b4f06 100644 --- a/modules/home/theme/catppuccin/default.nix +++ b/modules/home/theme/catppuccin/default.nix @@ -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; }; @@ -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"; diff --git a/modules/home/theme/gtk/default.nix b/modules/home/theme/gtk/default.nix index c23e9e54b..726849b7c 100644 --- a/modules/home/theme/gtk/default.nix +++ b/modules/home/theme/gtk/default.nix @@ -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."; @@ -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"; diff --git a/modules/nixos/theme/default.nix b/modules/nixos/theme/default.nix index a2396e47e..132b7e80d 100644 --- a/modules/nixos/theme/default.nix +++ b/modules/nixos/theme/default.nix @@ -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.";