config: Add ssh.nix

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2025-05-21 15:40:06 +03:00
parent 6b465331a0
commit fbcdfa19ed
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D
2 changed files with 4 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./firefox.nix
./cli.nix
./mpv.nix
./ssh.nix
];
services.syncthing = {
enable = true;

3
home-manager/ssh.nix Normal file
View file

@ -0,0 +1,3 @@
{pkgs, ...}: {
programs.ssh.enable = true;
}