First commit

This commit is contained in:
2026-02-22 17:28:02 +01:00
parent 7a70268785
commit 6bacf1878e
9011 changed files with 114470 additions and 0 deletions
@@ -0,0 +1,18 @@
# SSH client only (no server).
# - Installs OpenSSH client tools (ssh, scp, sftp, ssh-keygen, etc.)
# - Enables ssh-agent for user sessions
{ config, lib, pkgs, ... }:
{
# Install the OpenSSH client tools
environment.systemPackages = with pkgs; [
#openssh
];
# Start ssh-agent automatically for users (handy baseline)
programs.ssh.startAgent = true;
# Explicitly ensure the SSH server is NOT enabled
services.openssh.enable = false;
}