nix-config/nixos/_mixins/global/ssh-serve-store.nix
Gregory Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

15 lines
278 B
Nix

_:
{
nix = {
sshServe = {
enable = true;
keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAz0dIbaTuAihil/si33MQSFH5yBFoupwnV5gcq2CCbO nix-ssh"
];
protocol = "ssh";
write = true;
};
settings.trusted-users = [ "nix-ssh" ];
};
}