Define nixGL with wrapper

This commit is contained in:
2025-10-03 21:35:46 +02:00
parent dfc0d89694
commit 6a66cab489
3 changed files with 17 additions and 4 deletions

View File

@@ -1,9 +1,17 @@
{ pkgs, ... }:
{ pkgs, config, nixgl, ... }:
{
nixGL = {
packages = nixgl.packages;
defaultWrapper = "mesa";
};
home.username = "hektor";
home.homeDirectory = "/home/hektor";
home.stateVersion = "25.05";
home.packages = import ./packages.nix { inherit pkgs; };
home.packages = import ./packages.nix {
inherit pkgs;
inherit config;
};
}

View File

@@ -1,3 +1,3 @@
{ pkgs }:
{ pkgs, config, ... }:
with pkgs; [ ]