2017-10-07 17:27:46 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
# TODO: make ecryptfs work in initramfs?
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = mkIf (any (fs: fs == "ecryptfs") config.boot.supportedFilesystems) {
|
|
|
|
system.fsPackages = [ pkgs.ecryptfs ];
|
|
|
|
security.wrappers = {
|
2021-09-12 18:53:48 +02:00
|
|
|
"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";
|
|
|
|
};
|
2017-10-07 17:27:46 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|