From c01d20f1e9bc85574d997cef4e9eaca2164dd2b3 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Wed, 11 Feb 2026 16:32:08 -0500 Subject: [PATCH] fix --- home/modules/hyprland.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/modules/hyprland.nix b/home/modules/hyprland.nix index 97b4b39..c2d4f83 100644 --- a/home/modules/hyprland.nix +++ b/home/modules/hyprland.nix @@ -1,4 +1,5 @@ { + pkgs, lib, config, isNixOS, @@ -25,6 +26,8 @@ in ''; }; + home.packages = lib.mkIf isNixOS [ pkgs.xdg-desktop-portal-gtk ]; + xdg.configFile."hypr/themes/midnight.conf".text = mkHyprTheme config.palettes.midnight; xdg.configFile."hypr/themes/daylight.conf".text = mkHyprTheme config.palettes.daylight; }