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 756dbd7 commit 79d5ddbCopy full SHA for 79d5ddb
nixos-modules/host/default.nix
@@ -97,9 +97,9 @@ in
97
# Also ignore failures of each command for now
98
+ builtins.foldl' (acc: share:
99
acc + lib.optionalString (share.source != "/nix/store") ''
100
- # Initialize permissions for share with mountPoint ${share.mountPoint}
101
- mkdir -p '${share.source}' || :
102
- chown -hR ${user}:${group} '${share.source}' || :
+ # Initialize permissions for share with mountPoint ${share.mountPoint}
+ mkdir -p '${share.source}' || :
+ chown -hR ${user}:${group} '${share.source}' || :
103
'') "" guestConfig.microvm.shares;
104
serviceConfig.SyslogIdentifier = "install-microvm-${name}";
105
};
0 commit comments