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
This commit is contained in:
Mihai Fufezan 2024-09-04 22:36:24 +03:00
parent 08dbe67a1e
commit ca1e1a80ae
Signed by: fufexan
SSH Key Fingerprint: SHA256:SdnKmEpJrDu1+2UO1QpB/Eg4HKcdDi6n+xSRqFNJVpg
1 changed files with 0 additions and 4 deletions

View File

@ -71,8 +71,6 @@ Don't forget to replace `user@hostname` with your username and hostname!
enable = true; enable = true;
# set the flake package # set the flake package
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; 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; enable = true;
# set the flake package # set the flake package
package = hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; 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;
} }
} }
``` ```