meta: Merge wine module with desktop

Makes it easier to just import the desktop module and use everything we
want.
This commit is contained in:
Donovan Glover 2024-04-04 12:19:41 -04:00
parent 764fbd4917
commit a03963d1f7
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 4 additions and 4 deletions

View File

@ -15,11 +15,15 @@ in
options.modules.desktop = {
japanese = mkEnableOption "Japanese support (fcitx, anki, kanjidraw, etc.)";
bloat = mkEnableOption "GUI applications like Logseq";
wine = mkEnableOption "wine support";
};
config = with cfg; {
hardware.opengl.driSupport32Bit = mkIf wine true;
programs = {
hyprland.enable = true;
cdemu.enable = mkIf wine true;
thunar = {
enable = true;

View File

@ -1,4 +0,0 @@
{
hardware.opengl.driSupport32Bit = true;
programs.cdemu.enable = true;
}