1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 14:50:40 +02:00
oddlama_nix-config/users/myuser/ssh.nix
2024-11-26 13:34:55 +01:00

9 lines
264 B
Nix

{ config, ... }:
{
home.file.".ssh/yubikey.pub".text = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA5Uq+CDy5Pmt3If5M6d8K/Q7HArU6sZ7sgoj3T521Wm";
programs.ssh = {
enable = true;
controlMaster = "auto";
inherit (config.userSecrets.ssh) matchBlocks;
};
}