16 lines
227 B
Nix
16 lines
227 B
Nix
# Module arguments which our system can use to refer to its own configuration
|
|
{ config, lib, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../modules/ssh.nix
|
|
../modules
|
|
];
|
|
|
|
options = {
|
|
};
|
|
|
|
config = {
|
|
services.openssh.ports = [ 2022 ];
|
|
};
|
|
}
|