From 9a356932f4e7f2a09887b8da25dd277311c717ca Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Wed, 15 Jan 2025 13:27:51 -0500 Subject: [PATCH] ssh --- modules/security/ssh.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 modules/security/ssh.nix diff --git a/modules/security/ssh.nix b/modules/security/ssh.nix new file mode 100644 index 0000000..76c2992 --- /dev/null +++ b/modules/security/ssh.nix @@ -0,0 +1,5 @@ +{ + services.openssh = { + enable = true; + }; +}