Files
nixos/modules/nix-config/services.nix

16 lines
228 B
Nix

{ ... }:
{
services = {
pcscd.enable = true;
openssh = {
enable = true;
hostKeys = [
{
path = "/etc/ssh/ssh_host_ed25519_key";
type = "ed25519";
}
];
};
};
}