nixos/home/auth/nixos.nix

13 lines
195 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
config,
...
}:
{
# this module passes openssh public keys to home-manager
2025-01-13 11:52:09 +08:00
users.homeModules = [
{
passthrough.publicKeys = config.global.auth.openssh.publicKeys;
}
];
}