13 lines
272 B
Nix
13 lines
272 B
Nix
{ config, lib, ... }:
|
|
{
|
|
config = lib.mkIf (!config.system.steamdeck.enable) {
|
|
networking.useNetworkd = lib.mkForce false;
|
|
|
|
services.globalprotect.enable = true;
|
|
|
|
virtualisation = {
|
|
libvirtd.enable = true;
|
|
vmware.host.enable = true;
|
|
};
|
|
};
|
|
}
|