summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--accounts/gkleen@sif/default.nix3
-rw-r--r--accounts/gkleen@sif/zshrc2
2 files changed, 2 insertions, 3 deletions
diff --git a/accounts/gkleen@sif/default.nix b/accounts/gkleen@sif/default.nix
index 0c1f9170..a72356fe 100644
--- a/accounts/gkleen@sif/default.nix
+++ b/accounts/gkleen@sif/default.nix
@@ -226,7 +226,6 @@ in {
226 cpio 226 cpio
227 magic-wormhole 227 magic-wormhole
228 cfg.programs.zsh.package 228 cfg.programs.zsh.package
229 fuse3
230 util-linux 229 util-linux
231 findutils 230 findutils
232 qrencode 231 qrencode
@@ -258,7 +257,7 @@ in {
258 ]; 257 ];
259 fake = { 258 fake = {
260 builtin = ["print"]; 259 builtin = ["print"];
261 external = ["sudo" "umount"]; 260 external = ["sudo" "umount" "fusermount3"];
262 }; 261 };
263 }; 262 };
264 }; 263 };
diff --git a/accounts/gkleen@sif/zshrc b/accounts/gkleen@sif/zshrc
index df0fe1d6..c532b308 100644
--- a/accounts/gkleen@sif/zshrc
+++ b/accounts/gkleen@sif/zshrc
@@ -187,7 +187,7 @@ tmpdir() {
187 cd / 187 cd /
188 unmount() { 188 unmount() {
189 printf "Unmounting %s\n" ${1} >&2 189 printf "Unmounting %s\n" ${1} >&2
190 fusermount -u ${1} || umount ${1} || sudo umount ${1} 190 fusermount3 -u ${1} || umount ${1} || sudo umount ${1}
191 } 191 }
192 192
193 if [[ -n ${dir} ]]; then 193 if [[ -n ${dir} ]]; then