dotfiles-nixos/nixos/roles/server.nix
2023-06-18 17:03:56 +02:00

15 lines
214 B
Nix

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