Skip to content

Commit b1e2013

Browse files
committed
nixos-modules/host/default: Fix indentation
1 parent dc541b4 commit b1e2013

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
@@ -99,9 +99,9 @@ in
9999
# Also ignore failures of each command for now
100100
+ builtins.foldl' (acc: share:
101101
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}' || :
102+
# Initialize permissions for share with mountPoint ${share.mountPoint}
103+
mkdir -p '${share.source}' || :
104+
chown -hR ${user}:${group} '${share.source}' || :
105105
'') "" guestConfig.microvm.shares;
106106
serviceConfig.SyslogIdentifier = "install-microvm-${name}";
107107
};

0 commit comments

Comments
 (0)