From f4003b193f62ac1776ff0b253177d2cc12a79b2d Mon Sep 17 00:00:00 2001 From: shinya Date: Mon, 27 Oct 2025 15:02:45 +0100 Subject: [PATCH] test fix --- mate-xp-home.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mate-xp-home.nix b/mate-xp-home.nix index 8b204a6..d882d37 100644 --- a/mate-xp-home.nix +++ b/mate-xp-home.nix @@ -22,7 +22,7 @@ theme = { enable = lib.mkEnableOption "enable windows xp gtk theme for mate"; name = lib.mkOption { - type = lib.types.enum [ "Windows XP Luna" "Windows XP Embedded" "Windows XP Homestead Windows XP Metallic" "Windows XP Royale" "Windows XP Royale Dark" "Windows XP Zune" ]; + type = lib.types.enum [ "Windows XP Luna" "Windows XP Embedded" "Windows XP Homestead" "Windows XP Metallic" "Windows XP Royale" "Windows XP Royale Dark" "Windows XP Zune" ]; default = "Windows XP Luna"; description = "set the windows xp gtk theme for mate"; }; @@ -163,18 +163,18 @@ (lib.mkIf config.nixp.mate.theme.enable { dconf.settings = { "org/mate/desktop/interface" = { - gtk-theme = "${config.nixp.mate.theme.name}"; + gtk-theme = config.nixp.mate.theme.name; icon-theme = "windows-xp-icon-theme"; }; "org/mate/marco/general" = { - theme = "${config.nixp.mate.theme.name}"; + theme = config.nixp.mate.theme.name; }; }; gtk = { theme = { - name = "${config.nixp.theme.name}"; + name = config.nixp.theme.name; package = windows-theme.packages.${system}.windows-xp-theme; }; };