ignore upstream hyprland for now

This commit is contained in:
Adithya 2024-05-12 15:01:10 +05:30
parent 3e9450e1c6
commit 529003babb
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 5 additions and 3 deletions

View file

@ -1,7 +1,8 @@
{ config, pkgs, hyprland, ... }:
let
hyprland-pkg = config.wayland.windowManager.hyprland.finalPackage;
xdph = hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland;
#xdph = hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland.override { hyprland = hyprland-pkg; };
xdph = pkgs.xdg-desktop-portal-hyprland;
in
{
imports = [
@ -13,7 +14,7 @@ in
xdgOpenUsePortal = true;
extraPortals = [
pkgs.xdg-desktop-portal-gtk
(xdph.override { hyprland = hyprland-pkg; })
xdph
];
config = {
common = {

View file

@ -20,7 +20,8 @@ in
{
wayland.windowManager.hyprland = {
enable = true;
package = hyprland.packages.${pkgs.system}.hyprland;
#package = hyprland.packages.${pkgs.system}.default; # Upstream not compiling
package = pkgs.hyprland;
systemd = {
enable = true;
variables = [ "--all" ];