mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
16 lines
228 B
Nix
16 lines
228 B
Nix
{ ... }:
|
|
{
|
|
services = {
|
|
pcscd.enable = true;
|
|
openssh = {
|
|
enable = true;
|
|
hostKeys = [
|
|
{
|
|
path = "/etc/ssh/ssh_host_ed25519_key";
|
|
type = "ed25519";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|