Skip to content

Commit 79d5ddb

Browse files
committed
nixos-modules/host/default: Fix indentation
1 parent 756dbd7 commit 79d5ddb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nixos-modules/host/default.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ in
9797
# Also ignore failures of each command for now
9898
+ builtins.foldl' (acc: share:
9999
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}' || :
100+
# Initialize permissions for share with mountPoint ${share.mountPoint}
101+
mkdir -p '${share.source}' || :
102+
chown -hR ${user}:${group} '${share.source}' || :
103103
'') "" guestConfig.microvm.shares;
104104
serviceConfig.SyslogIdentifier = "install-microvm-${name}";
105105
};

0 commit comments

Comments
 (0)