11 lines
191 B
Nix
11 lines
191 B
Nix
{ pkgs, ...}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
ecryptfs
|
|
];
|
|
security.pam.enableEcryptfs = true;
|
|
|
|
programs.ecryptfs.enable = true;
|
|
boot.kernelModules = ["ecryptfs"];
|
|
}
|