nix-config/modules/home-manager-modules/openssh.nix

9 lines
160 B
Nix

{lib, ...}: {
options.programs = {
openssh.authorizedKeys = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [];
};
};
}