mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
9 lines
207 B
Nix
9 lines
207 B
Nix
{ config, pkgs, user, lib, ... }:
|
|
{
|
|
# Password-less logins for backup
|
|
users.users."${user}".openssh.authorizedKeys.keyFiles = [
|
|
config.age.secrets."ssh/kestrel/id_ed25519.pub".path
|
|
];
|
|
}
|
|
|