mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 14:50:40 +02:00
9 lines
264 B
Nix
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;
|
|
};
|
|
}
|