Skip to content

Commit 009b580

Browse files
committed
fix: formatting and parser error
1 parent a30d533 commit 009b580

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

home-manager.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ let
1919
;
2020

2121
mount = "${pkgs.util-linux}/bin/mount";
22-
fusermount = "${lib.getExe' pkgs.fuse "fusermount"}"
23-
unmountScript = mountPoint: tries: sleep: ''
22+
fusermount = "${lib.getExe' pkgs.fuse "fusermount"}";
23+
unmountScript = mountPoint: tries: sleep: ''
2424
triesLeft=${toString tries}
2525
if ${mount} | grep -F ${mountPoint}' ' >/dev/null; then
2626
while (( triesLeft > 0 )); do

0 commit comments

Comments
 (0)