Initial setup

This commit is contained in:
Lucas Thelen 2025-09-26 02:11:47 +00:00
commit ac3f55966b
9 changed files with 285 additions and 0 deletions

5
networking/ssh.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, lib, pkgs, ... }: {
services.openssh.enable = true;
networking.firewall.allowedTCPPorts = [ 22 ];
}