From e617dbf55f8154d55875a3bc00c38a7ee58a6086 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 13 Sep 2023 15:13:44 +0300 Subject: [PATCH] fwminex: fix swap and docker --- hosts/fwminex/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/fwminex/configuration.nix b/hosts/fwminex/configuration.nix index c37bc69..a22636b 100644 --- a/hosts/fwminex/configuration.nix +++ b/hosts/fwminex/configuration.nix @@ -15,10 +15,10 @@ removableEfi = true; partitionScheme = { efiBoot = "-part1"; - swap = "-part3"; bootPool = "-part2"; rootPool = "-part4"; }; + swapDevices = ["/dev/zvol/rpool/swap"]; }; }; @@ -40,7 +40,7 @@ ''; fileSystems."/var/lib/docker" = { - device = "rpool/nixos/docker"; + device = "rpool/nixos/var/docker"; fsType = "zfs"; };