From 8c7aed62647a91628cd3961b1931dc3fb254a8a2 Mon Sep 17 00:00:00 2001 From: Madeleine Date: Sun, 2 Apr 2023 16:45:31 +0100 Subject: [PATCH] fixed ssh on mac --- systems/macbookpro/ssh.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 systems/macbookpro/ssh.nix diff --git a/systems/macbookpro/ssh.nix b/systems/macbookpro/ssh.nix new file mode 100644 index 0000000..5d08ff7 --- /dev/null +++ b/systems/macbookpro/ssh.nix @@ -0,0 +1,7 @@ +{ config, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + openssh + ]; +}