From 8454d87be113bcc59cad6793245de90181f66710 Mon Sep 17 00:00:00 2001 From: twoneis Date: Sun, 19 Nov 2023 10:50:46 +0100 Subject: [PATCH] trying to fix niri --- modules/niri/niri/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/niri/niri/default.nix b/modules/niri/niri/default.nix index 4e2902c..67cfa96 100644 --- a/modules/niri/niri/default.nix +++ b/modules/niri/niri/default.nix @@ -4,11 +4,13 @@ , pkg-config , libxkbcommon , pipewire +, systemd , seatd , udev , wayland , libinput , mesa +, libglvnd }: rustPlatform.buildRustPackage { @@ -38,6 +40,7 @@ rustPlatform.buildRustPackage { buildInputs = [ libxkbcommon pipewire + systemd seatd udev wayland @@ -45,6 +48,12 @@ rustPlatform.buildRustPackage { mesa # libgbm ]; + runtimeDependencies = [ + wayland + mesa + libglvnd + ]; + meta = with lib; { description = "A scrollable-tiling Wayland compositor"; homepage = "https://github.com/YaLTeR/niri";