From 948d169b3311d518e3dff6b9bf24d5473f08a881 Mon Sep 17 00:00:00 2001 From: colin Date: Thu, 30 Jun 2022 00:07:46 -0700 Subject: [PATCH] image: don't populate the /persist directories. these are mostly done on boot. --- modules/image.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/image.nix b/modules/image.nix index a6ee7141..23f7e675 100644 --- a/modules/image.nix +++ b/modules/image.nix @@ -107,8 +107,8 @@ in in '' mkdir -p ./${storeRelPath} - # TODO: we should either fix up the owners (and perms?), or only create the bare minimum needed for boot (i.e. /var/*) - ${makeSubNixMounts} + # TODO: we should create the dirs required for boot (/var/log?). the rest are populated automatically. + # $(makeSubNixMounts) echo "Copying system closure..." while IFS= read -r path; do echo " Copying $path"