nixos/home/auth/nixos.nix

8 lines
182 B
Nix
Raw Normal View History

{ config
, ... }: {
# this module passes openssh public keys to home-manager
users.homeModules = [ {
2024-01-07 22:01:31 +08:00
passthrough.publicKeys = config.global.auth.openssh.publicKeys;
} ];
}