ignore upstream hyprland for now
This commit is contained in:
parent
3e9450e1c6
commit
529003babb
2 changed files with 5 additions and 3 deletions
|
@ -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 = {
|
||||
|
|
|
@ -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" ];
|
||||
|
|
Loading…
Reference in a new issue