chore(home-manager): Remove nixGL

This commit is contained in:
punkfairie 2024-11-11 21:27:37 -08:00
parent dc50185e3f
commit 211f7d40aa
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696
3 changed files with 5 additions and 15 deletions

View file

@ -9,8 +9,6 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# nixgl.url = "github:nix-community/nixGL";
rose-pine.url = "git+https://codewith.babesonthe.net/punkfairie/rose-pine-nix"; rose-pine.url = "git+https://codewith.babesonthe.net/punkfairie/rose-pine-nix";
# Rose pine themes that aren't included in the above flake: # Rose pine themes that aren't included in the above flake:
@ -40,9 +38,7 @@
home-manager.lib.homeManagerConfiguration { home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
extraSpecialArgs = # with inputs; extraSpecialArgs = {
{
# inherit nixgl;
inherit inputs; inherit inputs;
}; };

View file

@ -9,11 +9,6 @@
targets.genericLinux.enable = true; targets.genericLinux.enable = true;
# GPU integration.
# nixGL.packages = nixgl.packages;
# nixGL.defaultWrapper = "nvidia";
# nixGL.installScripts = [ "nvidia" ];
home.language.base = "en_US.UTF-8"; home.language.base = "en_US.UTF-8";
# Tell nix what version it is. # Tell nix what version it is.

View file

@ -3,9 +3,8 @@
programs.wezterm = { programs.wezterm = {
enable = true; enable = true;
# Needs to be wrapped with GPU driver libraries on non-NixOS systems. # Non-NixOS Linux systems don't have proper GPU integration, so we
# package = (config.lib.nixGL.wrap pkgs.wezterm); # unfortunately need to use the native package manager version.
package = pkgs.emptyDirectory; package = pkgs.emptyDirectory;
# TODO: create `local config` & return it seperately, so other modules can # TODO: create `local config` & return it seperately, so other modules can