diff options
author | Ben Sima <ben@bsima.me> | 2019-05-12 14:05:07 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-05-12 14:06:48 -0700 |
commit | dbcdf7751ef28a2c5e418f47f4824658f12992f5 (patch) | |
tree | 1b8f9d43f6fdf819390fe1fc5792acb0d9c0e38a | |
parent | 62064f5dbe780a9d8d9d79731d1565e31ef8877f (diff) |
enable virtualization
-rw-r--r-- | machines/helium.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/machines/helium.nix b/machines/helium.nix index 8bbeebc..3cbb907 100644 --- a/machines/helium.nix +++ b/machines/helium.nix @@ -36,6 +36,16 @@ }; }; + virtualisation = { + libvirtd.enable = true; + docker.enable = true; + virtualbox.guest.enable = true; + virtualbox.host.enable = true; + virtualbox.host.headless = false; + virtualbox.host.addNetworkInterface = true; + + }; + programs = { bash.enableCompletion = true; command-not-found.enable = true; |