587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
31 lines
637 B
Nix
31 lines
637 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.ecryptfs;
|
|
|
|
in {
|
|
options.programs.ecryptfs = {
|
|
enable = mkEnableOption "ecryptfs setuid mount wrappers";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
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";
|
|
};
|
|
|
|
};
|
|
};
|
|
}
|