From 49ef43cf259345e04c3febf6f08fd6356a0b9955 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Thu, 13 Nov 2025 04:14:07 +0530 Subject: [PATCH] feat(home): add vesktop package and configure xdg portal for hyprland --- home/apps/discord.nix | 1 + home/services/xdg.nix | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/home/apps/discord.nix b/home/apps/discord.nix index 0f4041c6..1982a2fb 100644 --- a/home/apps/discord.nix +++ b/home/apps/discord.nix @@ -5,5 +5,6 @@ }: { home.packages = lib.optionals pkgs.stdenv.isLinux [ pkgs.discord + pkgs.vesktop ]; } diff --git a/home/services/xdg.nix b/home/services/xdg.nix index 542c4f64..2eb53d86 100644 --- a/home/services/xdg.nix +++ b/home/services/xdg.nix @@ -7,11 +7,11 @@ lib.optionalAttrs (device.is "ryu") { xdg.portal = { enable = pkgs.stdenv.isLinux; - # config = { - # - # }; + config = { + hyprland.default = ["hyprland" "kde"]; + }; extraPortals = with pkgs; [ - # xdg-desktop-portal-hyprland + xdg-desktop-portal-hyprland kdePackages.xdg-desktop-portal-kde ]; };