Files
nix-config/server/modules/vmware-guest.nix
2023-10-27 09:53:28 +02:00

9 lines
161 B
Nix

{ config, pkgs, ... }:
{
## shared clipboard
virtualisation.vmware.guest.enable = true;
environment.systemPackages = with pkgs; [
open-vm-tools
];
}