9 lines
219 B
Nix
9 lines
219 B
Nix
{ config, lib, ... }: {
|
|
options.snowflake.core.openssh = {
|
|
enable = lib.mkEnableOption "enable openssh";
|
|
};
|
|
|
|
config = lib.mkIf config.snowflake.core.openssh.enable {
|
|
services.openssh.enable = true;
|
|
};
|
|
}
|