mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
11 lines
161 B
Nix
11 lines
161 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Enable incoming ssh
|
|
services.openssh = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
# TODO authorizedKeysFiles = "";
|
|
};
|
|
}
|