hosts/youko: enable vmware
This commit is contained in:
parent
94b293acbb
commit
21920907fe
1 changed files with 13 additions and 1 deletions
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue