This commit is contained in:
2026-01-20 19:48:20 -05:00
parent da6b4d1915
commit 8ed67464d0
8 changed files with 65 additions and 15 deletions

View File

@@ -13,7 +13,12 @@ let
securityModule = import ../modules/security.nix;
sshModule =
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
imports = [
(import ../services/ssh.nix {
@@ -28,7 +33,12 @@ pkgs.testers.runNixOSTest {
nodes = {
server =
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
imports = [
securityModule
@@ -47,7 +57,10 @@ pkgs.testers.runNixOSTest {
};
client = {
environment.systemPackages = with pkgs; [ sshpass openssh ];
environment.systemPackages = with pkgs; [
sshpass
openssh
];
};
};