Files
nixconfig/modules/nixos/openssh.nix

10 lines
135 B
Nix

{ config, lib, pkgs, ... }:
{
# enable the openssh daemon
services.openssh = {
enable = true;
openFirewall = true;
};
}