From 1183984bb094a1c25acb3b63947055218ff89cd6 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sat, 18 Jul 2026 14:49:47 -0400 Subject: [PATCH] Enable wine on odo and update nix_builder. --- nix/configuration/flake.lock | 8 ++++---- nix/configuration/hosts/odo/default.nix | 2 +- nix/configuration/roles/wine/default.nix | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/nix/configuration/flake.lock b/nix/configuration/flake.lock index f73c54d..44c6e6b 100644 --- a/nix/configuration/flake.lock +++ b/nix/configuration/flake.lock @@ -170,11 +170,11 @@ "rust-overlay": "rust-overlay_2" }, "locked": { - "lastModified": 1783278211, - "narHash": "sha256-/1u+MIQIge+cNPukQoK4Jp8nLuFZRbx4U+MyyxG0RpM=", + "lastModified": 1784398011, + "narHash": "sha256-RMBrYkNpcOlPvX3LaI3qdZfqgX+R3/D3tsJhxLJJiak=", "ref": "refs/heads/main", - "rev": "9281ba7e10d362d4edb489d0df0e78936dfe7b58", - "revCount": 32, + "rev": "59fdbf41efdd0bbd0341a7534738149b33bd557f", + "revCount": 37, "type": "git", "url": "https://code.fizz.buzz/talexander/nix_builder.git" }, diff --git a/nix/configuration/hosts/odo/default.nix b/nix/configuration/hosts/odo/default.nix index a9ee9b2..1291a19 100644 --- a/nix/configuration/hosts/odo/default.nix +++ b/nix/configuration/hosts/odo/default.nix @@ -152,7 +152,7 @@ me.wasm.enable = true; me.waybar.enable = true; me.webcam.enable = true; - me.wine.enable = false; + me.wine.enable = true; me.wireguard.activated = [ "drmario" "wgh" diff --git a/nix/configuration/roles/wine/default.nix b/nix/configuration/roles/wine/default.nix index d02a826..fd779c4 100644 --- a/nix/configuration/roles/wine/default.nix +++ b/nix/configuration/roles/wine/default.nix @@ -20,7 +20,7 @@ config = lib.mkIf (config.me.wine.enable && config.me.graphical) { environment.systemPackages = with pkgs; [ # wineWowPackages.stable # supports 32 + 64 bit - wineWowPackages.waylandFull # Supports 32 + 64 bit with native wayland support. + wineWow64Packages.waylandFull # Supports 32 + 64 bit with native wayland support. # winetricks ]; };