From 21920907feeb8a1dba7e85068a32478560e1c4c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikodem=20Rabuli=C5=84ski?= Date: Tue, 18 Mar 2025 22:05:47 +0100 Subject: [PATCH] hosts/youko: enable vmware --- hosts/youko/default.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/hosts/youko/default.nix b/hosts/youko/default.nix index 9863b6e..3a2fe49 100644 --- a/hosts/youko/default.nix +++ b/hosts/youko/default.nix @@ -1,6 +1,11 @@ { configurations.nixos.youko = - { config, username, ... }: + { + config, + lib, + username, + ... + }: { imports = [ ./disks.nix @@ -31,6 +36,13 @@ virtualisation.podman.enable = true; hardware.keyboard.qmk.enable = true; + settei.unfree.allowedPackages = [ "vmware-workstation" ]; + virtualisation.vmware.host.enable = true; + environment.etc."vmware/config" = lib.mkForce { + source = "${config.virtualisation.vmware.host.package}/etc/vmware/config"; + text = null; + }; + networking.hostId = "b49ee8de"; }; }