10 lines
219 B
Nix
10 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;
|
||
|
|
};
|
||
|
|
}
|