From d21cfb364a78ad72935625e79b8c5d497f0b7616 Mon Sep 17 00:00:00 2001 From: Devin Droddy <90054389+justDeeevin@users.noreply.github.com> Date: Wed, 2 Jul 2025 19:14:07 -0400 Subject: [PATCH] ashell: fix use of opacity option (#1576) --- modules/ashell/hm.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ashell/hm.nix b/modules/ashell/hm.nix index 726743e7..41616ac8 100644 --- a/modules/ashell/hm.nix +++ b/modules/ashell/hm.nix @@ -26,8 +26,8 @@ mkTarget { { opacity }: { programs.ashell.settings.appearance = { - inherit opacity; - menu.opacity = opacity; + opacity = opacity.desktop; + menu.opacity = opacity.desktop; }; } )