hosts/youko: enable vmware #2

Merged
nrabulinski merged 11 commits from nrabulinski/youko-init into main 2025-03-18 22:22:49 +01:00 AGit
Showing only changes of commit 21920907fe - Show all commits

View file

@ -1,6 +1,11 @@
{ {
configurations.nixos.youko = configurations.nixos.youko =
{ config, username, ... }: {
config,
lib,
username,
...
}:
{ {
imports = [ imports = [
./disks.nix ./disks.nix
@ -31,6 +36,13 @@
virtualisation.podman.enable = true; virtualisation.podman.enable = true;
hardware.keyboard.qmk.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"; networking.hostId = "b49ee8de";
}; };
} }