From 211f7d40aab2376cd8a1a91b47a5ef9e74718d18 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Mon, 11 Nov 2024 21:27:37 -0800 Subject: [PATCH] chore(home-manager): Remove nixGL --- flake.nix | 10 +++------- home/default.nix | 5 ----- home/programs/wezterm.nix | 5 ++--- 3 files changed, 5 insertions(+), 15 deletions(-) diff --git a/flake.nix b/flake.nix index 5b005cd..89defb0 100644 --- a/flake.nix +++ b/flake.nix @@ -9,8 +9,6 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - # nixgl.url = "github:nix-community/nixGL"; - rose-pine.url = "git+https://codewith.babesonthe.net/punkfairie/rose-pine-nix"; # Rose pine themes that aren't included in the above flake: @@ -40,11 +38,9 @@ home-manager.lib.homeManagerConfiguration { inherit pkgs; - extraSpecialArgs = # with inputs; - { - # inherit nixgl; - inherit inputs; - }; + extraSpecialArgs = { + inherit inputs; + }; modules = [ inputs.rose-pine.homeManagerModules.rose-pine diff --git a/home/default.nix b/home/default.nix index fbb51c9..a586521 100644 --- a/home/default.nix +++ b/home/default.nix @@ -9,11 +9,6 @@ targets.genericLinux.enable = true; - # GPU integration. - # nixGL.packages = nixgl.packages; - # nixGL.defaultWrapper = "nvidia"; - # nixGL.installScripts = [ "nvidia" ]; - home.language.base = "en_US.UTF-8"; # Tell nix what version it is. diff --git a/home/programs/wezterm.nix b/home/programs/wezterm.nix index 52768c9..d884d6d 100644 --- a/home/programs/wezterm.nix +++ b/home/programs/wezterm.nix @@ -3,9 +3,8 @@ programs.wezterm = { enable = true; - # Needs to be wrapped with GPU driver libraries on non-NixOS systems. - # package = (config.lib.nixGL.wrap pkgs.wezterm); - + # Non-NixOS Linux systems don't have proper GPU integration, so we + # unfortunately need to use the native package manager version. package = pkgs.emptyDirectory; # TODO: create `local config` & return it seperately, so other modules can