about summary refs log tree commit diff
path: root/machines/devhell/hildr.nix
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2020-05-04 20:17:06 +0100
committerdevhell <devhell@mailfresser.de>2020-05-04 20:17:06 +0100
commit5557cd782a1ce6bcee0c907ba6349c13da2f82db (patch)
tree0bdc1cf402133c69732ca96e72e377c9d4822af6 /machines/devhell/hildr.nix
parent54b3f8ac7da02738be6919d05ae12d5c14796e3f (diff)
machines/{hildr,eir}: Rename docker to oci-container
Upstream changed `virtualisation.docker` to
`virtualisation.oci-container` in [1], so naturally we'll need to rename
it here too.
Diffstat (limited to 'machines/devhell/hildr.nix')
-rw-r--r--machines/devhell/hildr.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/machines/devhell/hildr.nix b/machines/devhell/hildr.nix
index 5e67a0aa..05b12594 100644
--- a/machines/devhell/hildr.nix
+++ b/machines/devhell/hildr.nix
@@ -75,7 +75,10 @@
     cpuFreqGovernor = "powersave";
   };
 
-  virtualisation.docker.enable = true;
+  virtualisation.oci-containers = {
+    enable = false;
+    backend = "docker";
+  };
 
   nix = {
     maxJobs = lib.mkDefault 4;