258b935d70
this lets us *dis*able filesystem explicitly, as is required by e.g. the zfs-less installer images. currently that specifically is only easily possible by adding an overlay that stubs out `zfs`, with the obvious side-effect of also removing tooling that could run without the kernel module loaded.
24 lines
621 B
Nix
24 lines
621 B
Nix
{ config, lib, pkgs, ... }:
|
|
# TODO: make ecryptfs work in initramfs?
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = mkIf (config.boot.supportedFilesystems.ecryptfs or false) {
|
|
system.fsPackages = [ pkgs.ecryptfs ];
|
|
security.wrappers = {
|
|
"mount.ecryptfs_private" =
|
|
{ setuid = true;
|
|
owner = "root";
|
|
group = "root";
|
|
source = "${pkgs.ecryptfs.out}/bin/mount.ecryptfs_private";
|
|
};
|
|
"umount.ecryptfs_private" =
|
|
{ setuid = true;
|
|
owner = "root";
|
|
group = "root";
|
|
source = "${pkgs.ecryptfs.out}/bin/umount.ecryptfs_private";
|
|
};
|
|
};
|
|
};
|
|
}
|