flake.nix: remove nixGL from pvv home config

This commit is contained in:
2025-08-27 16:57:54 +02:00
parent 0ee8659117
commit 7f1ca1e761

View File

@@ -11,11 +11,6 @@
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";
nixgl = {
url = "github:nix-community/nixGL";
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix = { sops-nix = {
url = "github:Mic92/sops-nix"; url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@@ -49,7 +44,6 @@
nixpkgs-yet-unstabler, nixpkgs-yet-unstabler,
home-manager, home-manager,
nixos-hardware, nixos-hardware,
nixgl,
matrix-synapse-next, matrix-synapse-next,
maunium-stickerpicker, maunium-stickerpicker,
@@ -80,7 +74,6 @@
minecraft.overlays.default minecraft.overlays.default
osuchan.overlays.default osuchan.overlays.default
nixgl.overlays.default
]; ];
}; };
@@ -216,8 +209,6 @@
homeDirectory = lib.mkForce "/home/pvv/d/oysteikt"; homeDirectory = lib.mkForce "/home/pvv/d/oysteikt";
stateVersion = "25.05"; stateVersion = "25.05";
packages = [ packages = [
# pkgs.nixgl.auto.nixGLDefault
# NOTE: nix on pvv machines is severely outdated # NOTE: nix on pvv machines is severely outdated
# putting it in the path of home-manager # putting it in the path of home-manager
# will ensure we use the new one by default # will ensure we use the new one by default
@@ -229,12 +220,9 @@
nix.settings.use-xdg-base-directories = lib.mkForce false; nix.settings.use-xdg-base-directories = lib.mkForce false;
local.shell.aliases."Nix Stuff" = { local.shell.aliases."Nix Stuff" = {
nxr = lib.mkForce "home-manager switch --flake ${config.home.homeDirectory}/nix#pvv --impure"; nxr = lib.mkForce "echo \"Local rebuilds are not available on this machine\"";
nxrl = lib.mkForce "home-manager switch --flake ${config.home.homeDirectory}/nix#pvv --impure"; nxrl = lib.mkForce "echo \"Local rebuilds are not available on this machine\"";
}; };
xsession.enable = true;
xsession.windowManager.command = lib.mkForce "${pkgs.nixgl.auto.nixGLDefault}/bin/nixGL ${config.home.homeDirectory}/.xmonad/xmonad-x86_64-linux";
}) })
] ++ (builtins.attrValues self.homeModules); ] ++ (builtins.attrValues self.homeModules);
}; };