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; }