fwminex: fix swap and docker

This commit is contained in:
Motiejus Jakštys 2023-09-13 15:13:44 +03:00
parent 2220be3c81
commit e617dbf55f
1 changed files with 2 additions and 2 deletions

View File

@ -15,10 +15,10 @@
removableEfi = true; removableEfi = true;
partitionScheme = { partitionScheme = {
efiBoot = "-part1"; efiBoot = "-part1";
swap = "-part3";
bootPool = "-part2"; bootPool = "-part2";
rootPool = "-part4"; rootPool = "-part4";
}; };
swapDevices = ["/dev/zvol/rpool/swap"];
}; };
}; };
@ -40,7 +40,7 @@
''; '';
fileSystems."/var/lib/docker" = { fileSystems."/var/lib/docker" = {
device = "rpool/nixos/docker"; device = "rpool/nixos/var/docker";
fsType = "zfs"; fsType = "zfs";
}; };