From 7007bef00328afdbe5139ccc7f551d42eef3178b Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Wed, 14 Jun 2023 08:32:48 +0200 Subject: [PATCH] feat: mount docker volume --- machines/p330/hardware-configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/machines/p330/hardware-configuration.nix b/machines/p330/hardware-configuration.nix index d523bf1..cf03a95 100644 --- a/machines/p330/hardware-configuration.nix +++ b/machines/p330/hardware-configuration.nix @@ -36,6 +36,12 @@ fsType = "ext4"; }; + fileSystems."/var/lib/docker" = + { + device = "/dev/disk/by-uuid/1f8dae67-1640-4688-ac86-b0e6f5095d6e"; + fsType = "ext4"; + }; + swapDevices = [{ device = "/dev/disk/by-uuid/b90199d6-05e8-4994-bf9d-7b07f10d583e"; }];