encryptfs
This commit is contained in:
@@ -157,6 +157,7 @@
|
|||||||
./modules/fh/forensik.nix
|
./modules/fh/forensik.nix
|
||||||
./systems/laptop/configuration.nix
|
./systems/laptop/configuration.nix
|
||||||
./modules/cli-tools.nix
|
./modules/cli-tools.nix
|
||||||
|
./modules/ecryptfs.nix
|
||||||
./modules/virt-manager.nix
|
./modules/virt-manager.nix
|
||||||
./modules/vmware-host.nix
|
./modules/vmware-host.nix
|
||||||
./modules/nix/ld.nix
|
./modules/nix/ld.nix
|
||||||
|
|||||||
@@ -24,5 +24,6 @@
|
|||||||
tldr
|
tldr
|
||||||
file
|
file
|
||||||
unzip
|
unzip
|
||||||
|
lsof
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
10
modules/ecryptfs.nix
Normal file
10
modules/ecryptfs.nix
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{ pkgs, ...}:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
ecryptfs
|
||||||
|
];
|
||||||
|
security.pam.enableEcryptfs = true;
|
||||||
|
|
||||||
|
programs.ecryptfs.enable = true;
|
||||||
|
boot.kernelModules = ["ecryptfs"];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user