Draft: Mount the nix store from hut in compute nodes #66

Closed
rarias wants to merge 11 commits from shared-nix-store into master
Showing only changes of commit e065cde376 - Show all commits

View File

@ -54,11 +54,15 @@
mountConfig = { mountConfig = {
LazyUnmount = true; LazyUnmount = true;
}; };
# Run the unit after remote-fs-pre.target but before the remote-fs.target
after = [ "remote-fs-pre.target"];
before = [ "umount.target" "remote-fs.target" ];
# Install by using wantedBy over remote-fs.target
wantedBy = [ "remote-fs.target" ];
unitConfig = { unitConfig = {
# We need to wait for the NFS mount # We need to wait for the NFS mount
RequiresMountsFor = "/nix/store /mnt/hut-nix-store"; RequiresMountsFor = "/nix/store /mnt/hut-nix-store";
RequiredBy = "remote-fs.target";
Before = "remote-fs.target";
}; };
} }
]; ];