about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2015-08-21 20:12:59 +0300
committerVladimír Čunát <vcunat@gmail.com>2015-10-03 14:08:52 +0200
commit0e6d0a5868e23722e2949ae8990f02a6efb6b15f (patch)
treedcebcd102d05d68e0d70dc7d0ab3150992e96e84 /nixos
parent331aee2a61073e11adfddac43218d4b1ef00bb1a (diff)
downloadnixlib-0e6d0a5868e23722e2949ae8990f02a6efb6b15f.tar
nixlib-0e6d0a5868e23722e2949ae8990f02a6efb6b15f.tar.gz
nixlib-0e6d0a5868e23722e2949ae8990f02a6efb6b15f.tar.bz2
nixlib-0e6d0a5868e23722e2949ae8990f02a6efb6b15f.tar.lz
nixlib-0e6d0a5868e23722e2949ae8990f02a6efb6b15f.tar.xz
nixlib-0e6d0a5868e23722e2949ae8990f02a6efb6b15f.tar.zst
nixlib-0e6d0a5868e23722e2949ae8990f02a6efb6b15f.zip
unionfs-fuse: Fix the utillinux path hack for multiple-outputs
Double ugh.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/tasks/filesystems/unionfs-fuse.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/tasks/filesystems/unionfs-fuse.nix b/nixos/modules/tasks/filesystems/unionfs-fuse.nix
index 3e38bffa3ba2..1dcc4c87e3ce 100644
--- a/nixos/modules/tasks/filesystems/unionfs-fuse.nix
+++ b/nixos/modules/tasks/filesystems/unionfs-fuse.nix
@@ -18,9 +18,9 @@
 
       boot.initrd.postDeviceCommands = ''
           # Hacky!!! fuse hard-codes the path to mount
-          mkdir -p /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}/bin
-          ln -s $(which mount) /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}/bin
-          ln -s $(which umount) /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}/bin
+          mkdir -p /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}-bin/bin
+          ln -s $(which mount) /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}-bin/bin
+          ln -s $(which umount) /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}-bin/bin
         '';
     })