🔥 refactor(nixgl): Comment out nixGL
This commit is contained in:
parent
c221e8d432
commit
3f09b1c787
2 changed files with 10 additions and 9 deletions
11
flake.nix
11
flake.nix
|
@ -9,7 +9,7 @@
|
|||
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";
|
||||
|
||||
|
@ -35,10 +35,11 @@
|
|||
home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
|
||||
extraSpecialArgs = with inputs; {
|
||||
inherit nixgl;
|
||||
inherit inputs;
|
||||
};
|
||||
extraSpecialArgs = # with inputs;
|
||||
{
|
||||
# inherit nixgl;
|
||||
inherit inputs;
|
||||
};
|
||||
|
||||
modules = [
|
||||
./home
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
pkgs,
|
||||
nixgl,
|
||||
# nixgl,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
@ -10,9 +10,9 @@
|
|||
targets.genericLinux.enable = true;
|
||||
|
||||
# GPU integration.
|
||||
nixGL.packages = nixgl.packages;
|
||||
nixGL.defaultWrapper = "nvidia";
|
||||
nixGL.installScripts = [ "nvidia" ];
|
||||
# nixGL.packages = nixgl.packages;
|
||||
# nixGL.defaultWrapper = "nvidia";
|
||||
# nixGL.installScripts = [ "nvidia" ];
|
||||
|
||||
home.language.base = "en_US.UTF-8";
|
||||
|
||||
|
|
Loading…
Reference in a new issue