moved openssh config into home manager configs

This commit is contained in:
Leyla Becker 2024-12-24 16:01:37 -06:00
parent d760992a06
commit 2d5e37b1eb
6 changed files with 26 additions and 9 deletions

View file

@ -0,0 +1,8 @@
{lib, ...}: {
options.programs = {
openssh.authorizedKeys = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [];
};
};
}