Skip to content

Commit

Permalink
fix: formatting and parser error
Browse files Browse the repository at this point in the history
  • Loading branch information
DaRacci committed Dec 31, 2024
1 parent a30d533 commit 37b017e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions home-manager.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ let
;

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

0 comments on commit 37b017e

Please sign in to comment.