From 1c56347c6c5d9ef48da3e8c9e63082fd65289458 Mon Sep 17 00:00:00 2001 From: emanuel <76693837+emsquid@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:28:56 +0100 Subject: [PATCH] nix: fix unsupportedSystem for gpu-screen-recorder --- flake.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 681ac538e..10be858b8 100644 --- a/flake.nix +++ b/flake.nix @@ -49,7 +49,6 @@ pkgs.glib pkgs.bluez-tools pkgs.grimblast - pkgs.gpu-screen-recorder pkgs.brightnessctl pkgs.gnome-bluetooth (pkgs.python3.withPackages (python-pkgs: with python-pkgs; [ @@ -67,7 +66,7 @@ pkgs.gvfs pkgs.swww pkgs.pywal - ]; + ] ++ (nixpkgs.lib.optionals (system == "x86_64-linux") [pkgs.gpu-screen-recorder]); }; });