10 lines
135 B
Nix
10 lines
135 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# enable the openssh daemon
|
|
services.openssh = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
};
|
|
}
|