We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc541b4 commit b1e2013Copy full SHA for b1e2013
nixos-modules/host/default.nix
@@ -99,9 +99,9 @@ in
99
# Also ignore failures of each command for now
100
+ builtins.foldl' (acc: share:
101
acc + lib.optionalString (share.source != "/nix/store") ''
102
- # Initialize permissions for share with mountPoint ${share.mountPoint}
103
- mkdir -p '${share.source}' || :
104
- chown -hR ${user}:${group} '${share.source}' || :
+ # Initialize permissions for share with mountPoint ${share.mountPoint}
+ mkdir -p '${share.source}' || :
+ chown -hR ${user}:${group} '${share.source}' || :
105
'') "" guestConfig.microvm.shares;
106
serviceConfig.SyslogIdentifier = "install-microvm-${name}";
107
};
0 commit comments