8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
14 lines
430 B
Nix
14 lines
430 B
Nix
{ 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 = {
|
|
"mount.ecryptfs_private".source = "${pkgs.ecryptfs.out}/bin/mount.ecryptfs_private";
|
|
"umount.ecryptfs_private".source = "${pkgs.ecryptfs.out}/bin/umount.ecryptfs_private";
|
|
};
|
|
};
|
|
}
|