From 6c782154d9f0288ee51d12ddc518445435b99013 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 25 May 2023 23:48:40 -0400 Subject: [PATCH] Update virtualization-specific config Note that it may be better to simply manage VMs through a separate interface than declaratively configure them in the same configuration as the host. --- host/virtualization/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/host/virtualization/default.nix b/host/virtualization/default.nix index 9227361..10c085d 100644 --- a/host/virtualization/default.nix +++ b/host/virtualization/default.nix @@ -25,6 +25,10 @@ services.gnome.core-utilities.enable = false; environment.gnome.excludePackages = [ pkgs.gnome-tour ]; - hardware.pulseaudio.enable = false; + + services.pipewire.enable = lib.mkForce false; + services.mullvad-vpn.enable = lib.mkForce false; + programs.hyprland.enable = lib.mkForce false; + services.greetd.enable = lib.mkForce false; }; }