nixos/home/auth/nixos.nix
2025-01-13 11:52:09 +08:00

13 lines
195 B
Nix

{
config,
...
}:
{
# this module passes openssh public keys to home-manager
users.homeModules = [
{
passthrough.publicKeys = config.global.auth.openssh.publicKeys;
}
];
}