diff options
| author | Baitinq <[email protected]> | 2022-09-07 14:14:43 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-07 14:14:56 +0200 |
| commit | ff6816921b128ecf44cb29154ef2b62e36c8e7b1 (patch) | |
| tree | 6c6f1865a758905b734f64eac49a130a7b8ee371 /modules/virtualisation/default.nix | |
| parent | Change hardcoded user to use the ${user} variable (diff) | |
| download | nixos-config-ff6816921b128ecf44cb29154ef2b62e36c8e7b1.tar.gz nixos-config-ff6816921b128ecf44cb29154ef2b62e36c8e7b1.tar.bz2 nixos-config-ff6816921b128ecf44cb29154ef2b62e36c8e7b1.zip | |
Modules: Virtualisation: Virtualbox: Remove guest extension
Diffstat (limited to '')
| -rw-r--r-- | modules/virtualisation/default.nix | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/modules/virtualisation/default.nix b/modules/virtualisation/default.nix index 6f8c3a6..73641fd 100644 --- a/modules/virtualisation/default.nix +++ b/modules/virtualisation/default.nix @@ -4,15 +4,7 @@ virtualisation = { docker.enable = true; libvirtd.enable = true; - virtualbox = { - host = { - enable = true; - }; - guest = { - enable = true; - x11 = true; - }; - }; + virtualbox.host.enable = true; }; users.users.${user}.extraGroups = [ "docker" "libvirtd" ]; |