2022-09-12 17:32:56 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.ecryptfs;
|
|
|
|
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.programs.ecryptfs = {
|
2024-04-17 14:37:58 +03:00
|
|
|
enable = lib.mkEnableOption "ecryptfs setuid mount wrappers";
|
2022-09-12 17:32:56 +02:00
|
|
|
};
|
|
|
|
|
2024-04-17 14:37:58 +03:00
|
|
|
config = lib.mkIf cfg.enable {
|
2022-09-12 17:32:56 +02:00
|
|
|
security.wrappers = {
|
|
|
|
|
|
|
|
"mount.ecryptfs_private" = {
|
|
|
|
setuid = true;
|
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
source = "${lib.getBin pkgs.ecryptfs}/bin/mount.ecryptfs_private";
|
|
|
|
};
|
|
|
|
"umount.ecryptfs_private" = {
|
|
|
|
setuid = true;
|
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
source = "${lib.getBin pkgs.ecryptfs}/bin/umount.ecryptfs_private";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|