🔥 refactor(nixgl): Comment out nixGL

This commit is contained in:
punkfairie 2024-11-03 11:33:32 -08:00
parent c221e8d432
commit 3f09b1c787
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 10 additions and 9 deletions

View file

@ -9,7 +9,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nixgl.url = "github:nix-community/nixGL"; # nixgl.url = "github:nix-community/nixGL";
rose-pine.url = "git+https://git.punkfairie.net/punkfairie/rose-pine-nix"; rose-pine.url = "git+https://git.punkfairie.net/punkfairie/rose-pine-nix";
@ -35,10 +35,11 @@
home-manager.lib.homeManagerConfiguration { home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
extraSpecialArgs = with inputs; { extraSpecialArgs = # with inputs;
inherit nixgl; {
inherit inputs; # inherit nixgl;
}; inherit inputs;
};
modules = [ modules = [
./home ./home

View file

@ -1,6 +1,6 @@
{ {
pkgs, pkgs,
nixgl, # nixgl,
... ...
}: }:
{ {
@ -10,9 +10,9 @@
targets.genericLinux.enable = true; targets.genericLinux.enable = true;
# GPU integration. # GPU integration.
nixGL.packages = nixgl.packages; # nixGL.packages = nixgl.packages;
nixGL.defaultWrapper = "nvidia"; # nixGL.defaultWrapper = "nvidia";
nixGL.installScripts = [ "nvidia" ]; # nixGL.installScripts = [ "nvidia" ];
home.language.base = "en_US.UTF-8"; home.language.base = "en_US.UTF-8";