1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-04-28 08:45:04 +02:00
git.oat.zone--dark-firepit-.../modules/services/ssh.nix
System administrator ec00c09f2e Dotfiles
2022-01-11 17:44:40 +00:00

21 lines
400 B
Nix

{ options, config, lib, pkgs, ... }:
with lib;
#with lib.my;
let
cfg = config.modules.services.ssh;
in {
options.modules.services.ssh = {
enable = mkOption {
type = types.bool;
default = false;
description = "Provide system SSH support though OpenSSH.";
};
};
config = mkIf cfg.enable {
services.openssh.enable = true;
# services.sshd.enable = true;
};
}