From 6dba39730605414e518656f1a98b8be2fe79bb02 Mon Sep 17 00:00:00 2001 From: ooks-io Date: Fri, 12 Jul 2024 19:40:10 +1200 Subject: [PATCH] feat(nixos:xdg-portal):use xdg hyprland portal flake input --- nixos/modules/host/hardware/features/video.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/host/hardware/features/video.nix b/nixos/modules/host/hardware/features/video.nix index bfa2e89..8b51ec9 100644 --- a/nixos/modules/host/hardware/features/video.nix +++ b/nixos/modules/host/hardware/features/video.nix @@ -1,4 +1,4 @@ -{ lib, config, pkgs, ... }: +{ lib, inputs, config, pkgs, ... }: let inherit (lib) mkIf; @@ -19,7 +19,7 @@ in enable = true; xdgOpenUsePortal = true; extraPortals = with pkgs; [ - xdg-desktop-portal-hyprland + inputs.xdg-portal-hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland xdg-desktop-portal-gtk ]; config = {