-
-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nixGL fails with assertion error on nvidia #154
Comments
@tehmatt FYI I just tested your approach locally and it does not work:
AFAICS the problem is that |
I'm getting the same error on my xps-9650. I had to remove the Nvidia driver to rebuild. |
…n `libsOnly`" THe change caused nixGL instantiation failures: - nix-community/nixGL#157 - nix-community/nixGL#154 I missed the fact that there is no easy way to oberride `useSettings` as it's an internal argument as ollosed to `useLibs`. Instead of fixing it let's revert it back and try again later. This reverts commit 9c51fb0.
I'm getting the same error since yesterday. My
UPD:Fixed that by explicitly adding
Also works with the following flake inputs: {
...
inputs = {
# Specify the source of Home Manager and Nixpkgs.
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixgl.url = "github:guibou/nixGL";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
...
} |
Fixed upstream. |
This issue has been mentioned on NixOS Discourse. There might be relevant details there: https://discourse.nixos.org/t/home-manager-selective-update-of-packages-possible/39199/1 |
I'm using
nixGL@HEAD
andnixpkgs-unstable@HEAD
withhome-manager
. Runninghome-manager switch
fails with the assertionassert useSettings -> !libsOnly;
.A recent PR (NixOS/nixpkgs#278915) looks like it caused this. My uninformed guess is that
nixGL
should be explicitly settinguseSettings
to false nearnixGL/nixGL.nix
Line 87 in 489d6b0
Raw stack-trace:
The text was updated successfully, but these errors were encountered: