chore(home-manager): Remove nixGL
This commit is contained in:
parent
dc50185e3f
commit
211f7d40aa
3 changed files with 5 additions and 15 deletions
10
flake.nix
10
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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue