mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
29 lines
634 B
Nix
29 lines
634 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.programs.ecryptfs;
|
|
|
|
in {
|
|
options.programs.ecryptfs = {
|
|
enable = lib.mkEnableOption "ecryptfs setuid mount wrappers";
|
|
};
|
|
|
|
config = lib.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";
|
|
};
|
|
|
|
};
|
|
};
|
|
}
|