diff options
author | Ben Sima <ben@bsima.me> | 2025-01-21 03:38:41 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-01-21 05:05:18 -0500 |
commit | df8d881cd6adb972adf92b6397a6e297025e3172 (patch) | |
tree | 7b93672f3c03e4cbb827e9744616579ab0c57f9b /Omni/Dev/Docker.nix | |
parent | cfd76dfeb745acaaf030d9d2e0c0dad2301fc09c (diff) |
Enable docker support on Beryllium
Apparently the driSupport is no longer needed, so I had to delete that. Anyway
moving the Docker dev stuff to a centralized file should be helpful and ensure
that it continues to work the same way across systems.
Diffstat (limited to 'Omni/Dev/Docker.nix')
-rw-r--r-- | Omni/Dev/Docker.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Omni/Dev/Docker.nix b/Omni/Dev/Docker.nix new file mode 100644 index 0000000..d510682 --- /dev/null +++ b/Omni/Dev/Docker.nix @@ -0,0 +1,13 @@ +{...}: +/* +Enable docker dev support +*/ +{ + virtualisation.docker.enable = true; + virtualisation.docker.liveRestore = false; + virtualisation.libvirtd.enable = false; + virtualisation.virtualbox.host.enable = false; + virtualisation.virtualbox.host.headless = false; + virtualisation.virtualbox.host.addNetworkInterface = false; + virtualisation.virtualbox.guest.enable = false; +} |