2024-12-10 19:26:33 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2022-09-12 15:32:56 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.ecryptfs;
|
|
|
|
|
2024-12-10 19:26:33 +00:00
|
|
|
in
|
|
|
|
{
|
2022-09-12 15:32:56 +00:00
|
|
|
options.programs.ecryptfs = {
|
2024-04-17 11:37:58 +00:00
|
|
|
enable = lib.mkEnableOption "ecryptfs setuid mount wrappers";
|
2022-09-12 15:32:56 +00:00
|
|
|
};
|
|
|
|
|
2024-04-17 11:37:58 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
2022-09-12 15:32:56 +00: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";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|