2014-05-05 18:58:51 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2012-12-16 17:33:36 +00:00
|
|
|
|
|
|
|
{
|
2014-05-05 18:58:51 +00:00
|
|
|
config = lib.mkMerge [
|
2014-07-30 13:44:47 +00:00
|
|
|
|
2014-05-05 18:58:51 +00:00
|
|
|
(lib.mkIf (lib.any (fs: fs == "unionfs-fuse") config.boot.initrd.supportedFilesystems) {
|
2013-04-10 12:06:29 +00:00
|
|
|
boot.initrd.kernelModules = [ "fuse" ];
|
2014-07-30 13:44:47 +00:00
|
|
|
|
2013-04-10 12:06:29 +00:00
|
|
|
boot.initrd.extraUtilsCommands = ''
|
2015-03-29 00:15:41 +00:00
|
|
|
copy_bin_and_libs ${pkgs.fuse}/sbin/mount.fuse
|
|
|
|
copy_bin_and_libs ${pkgs.unionfs-fuse}/bin/unionfs
|
2014-07-30 13:44:47 +00:00
|
|
|
substitute ${pkgs.unionfs-fuse}/sbin/mount.unionfs-fuse $out/bin/mount.unionfs-fuse \
|
|
|
|
--replace '${pkgs.bash}/bin/bash' /bin/sh \
|
|
|
|
--replace '${pkgs.fuse}/sbin' /bin \
|
|
|
|
--replace '${pkgs.unionfs-fuse}/bin' /bin
|
|
|
|
chmod +x $out/bin/mount.unionfs-fuse
|
2012-12-16 17:33:36 +00:00
|
|
|
'';
|
2014-07-30 13:44:47 +00:00
|
|
|
|
2013-04-10 12:06:29 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
})
|
2014-07-30 13:44:47 +00:00
|
|
|
|
2014-05-05 18:58:51 +00:00
|
|
|
(lib.mkIf (lib.any (fs: fs == "unionfs-fuse") config.boot.supportedFilesystems) {
|
2013-04-10 12:06:29 +00:00
|
|
|
system.fsPackages = [ pkgs.unionfs-fuse ];
|
|
|
|
})
|
2014-07-30 13:44:47 +00:00
|
|
|
|
2013-04-10 12:06:29 +00:00
|
|
|
];
|
2012-12-16 17:33:36 +00:00
|
|
|
}
|