2023-06-11 15:53:13 +00:00
|
|
|
# Module arguments which our system can use to refer to its own configuration
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
2023-06-18 15:03:56 +00:00
|
|
|
imports = [
|
|
|
|
../modules/ssh.nix
|
2023-06-28 20:14:05 +00:00
|
|
|
../modules
|
2023-06-18 15:03:56 +00:00
|
|
|
];
|
2023-06-11 15:53:13 +00:00
|
|
|
|
2023-06-18 15:03:56 +00:00
|
|
|
options = {
|
|
|
|
};
|
2023-06-11 15:53:13 +00:00
|
|
|
|
2023-06-18 15:03:56 +00:00
|
|
|
config = {
|
|
|
|
services.openssh.ports = [ 2022 ];
|
|
|
|
};
|
2023-06-11 15:53:13 +00:00
|
|
|
}
|