From ca1e1a80ae5deed0360c16c40ef36816a2ee96ef Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Wed, 4 Sep 2024 22:36:24 +0300 Subject: [PATCH] Nix: remove portalPackage from HM page The related PR isn't merged yet, I hallucinated and thought it was. https://github.com/nix-community/home-manager/pull/5707 --- pages/Nix/Hyprland on Home Manager.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pages/Nix/Hyprland on Home Manager.md b/pages/Nix/Hyprland on Home Manager.md index 44e09c1..6c543f1 100644 --- a/pages/Nix/Hyprland on Home Manager.md +++ b/pages/Nix/Hyprland on Home Manager.md @@ -71,8 +71,6 @@ Don't forget to replace `user@hostname` with your username and hostname! enable = true; # set the flake package package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; - # make sure to also set the portal package, so that they are in sync - portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; }; } # ... @@ -116,8 +114,6 @@ in { enable = true; # set the flake package package = hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; - # make sure to also set the portal package, so that they are in sync - portalPackage = hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; } } ```