17 lines
410 B
Nix
17 lines
410 B
Nix
{ config, lib, ... }:
|
|
{
|
|
config = lib.mkIf (!config.system.steamdeck.enable) {
|
|
networking.useNetworkd = lib.mkForce false;
|
|
|
|
services.globalprotect.enable = true;
|
|
|
|
virtualisation.vmware.host.enable = true;
|
|
|
|
nixpkgs.allowUnfreePackages = [ "vmware-workstation" ];
|
|
|
|
environment.persistence."/persist".users.${config.sysusers.main}.directories = [
|
|
"vmware"
|
|
".vmware"
|
|
];
|
|
};
|
|
}
|