From ce57cd14337d01a738b68f73af46fea129ce37a8 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 12 Jun 2023 03:07:00 -0400 Subject: [PATCH] containers: Remove hostCfg This shouldn't be needed since there are many other ways to share configuration from the host, and I never used opengl.extraPackages anyway. --- containers/wine.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/containers/wine.nix b/containers/wine.nix index 80fdc36..953007e 100644 --- a/containers/wine.nix +++ b/containers/wine.nix @@ -1,6 +1,4 @@ -{ config, ... }: - -let VARIABLES = import ../src/variables.nix; hostCfg = config; in { +let VARIABLES = import ../src/variables.nix; in { containers.wine = { privateNetwork = true; @@ -71,7 +69,6 @@ let VARIABLES = import ../src/variables.nix; hostCfg = config; in { hardware.opengl = { enable = true; - extraPackages = hostCfg.hardware.opengl.extraPackages; driSupport32Bit = true; };