diff options
Diffstat (limited to 'hosts/aptos')
-rw-r--r-- | hosts/aptos/default.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hosts/aptos/default.nix b/hosts/aptos/default.nix index 24f823e..f3ed313 100644 --- a/hosts/aptos/default.nix +++ b/hosts/aptos/default.nix @@ -10,6 +10,17 @@ boot = { initrd = { luks.devices."system".allowDiscards = true; }; }; + virtualisation.docker = { enable = true; }; + + virtualisation.containerd = { + enable = true; + settings = { + plugins."io.containerd.grpc.v1.cri" = { + containerd.snapshotter = "overlayfs"; + }; + }; + }; + # Use systemd-networkd for networking systemd.network = { enable = true; |