dotfiles/modules/cli/ssh.nix

8 lines
198 B
Nix
Raw Normal View History

2022-02-15 17:24:05 +01:00
{ config, lib, pkgs, ... }:
{
users.users.moritz.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGoAqa2m7hIzZ2LS96Z+RCIlRvhBM/j7h27tMBCwMT+a moritz@nixos-laptop"
];
}