12 lines
173 B
Nix
12 lines
173 B
Nix
{tree, ...}: {
|
|
imports = with tree; [
|
|
profiles.nixos.sshd
|
|
];
|
|
|
|
boot.encryptedDrive = {
|
|
enable = true;
|
|
mode = "ssh";
|
|
allowPasswordDecrypt = true;
|
|
};
|
|
}
|