diff --git a/hosts/monolith.nix b/hosts/monolith.nix index c447c45..22144c3 100644 --- a/hosts/monolith.nix +++ b/hosts/monolith.nix @@ -115,6 +115,12 @@ in fsType = "btrfs"; options = [ "subvol=@projects" "nofail" ] ++ btrfs_options ++ btrfs_ssd; }; + fileSystems."/var/lib/docker" = { + device = "/dev/disk/by-label/BTRFS_BIGBOY"; + fsType = "btrfs"; + options = [ "subvol=@docker" "nofail" ] ++ btrfs_options ++ btrfs_ssd; + }; + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking # (the default) this is the recommended approach. When using systemd-networkd it's # still possible to use this option, but it's recommended to use it in conjunction