machine aresix: add ecryptfs (request by juan)

This commit is contained in:
Pedro Rey Anca 2025-09-08 19:00:41 +02:00
parent 7606f9e051
commit 5793c9096a
Signed by: peprolinbot
GPG key ID: 053EA6E00116533A

View file

@ -1,8 +1,13 @@
{...}: {
{pkgs, ...}: {
users.users.juan = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFpkZoYCFS6jQyaLgRkG8WlOj8ybpwsJkCWTuKkGB5oA Juan Rey"
];
};
# Requested by juan
environment.systemPackages = [pkgs.ecryptfs];
programs.ecryptfs.enable = true;
boot.kernelModules = ["ecryptfs"];
}