From 8e16a465e18f82e5379b82a81359b3ae1985a381 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 3 Apr 2024 06:01:24 -0400 Subject: [PATCH] meta: Merge cdemu with wine The cdemu module is wine-specific and should be enabled together with the wine module, with an option for the user to disable it if desired. --- modules/cdemu.nix | 5 ----- modules/wine.nix | 1 + 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 modules/cdemu.nix diff --git a/modules/cdemu.nix b/modules/cdemu.nix deleted file mode 100644 index d4770e4f..00000000 --- a/modules/cdemu.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ - programs.cdemu = { - enable = true; - }; -} diff --git a/modules/wine.nix b/modules/wine.nix index 06dbca15..e97e4e61 100644 --- a/modules/wine.nix +++ b/modules/wine.nix @@ -1,3 +1,4 @@ { hardware.opengl.driSupport32Bit = true; + programs.cdemu.enable = true; }