From 15a311454e273a6e76ac7a6394d7d06308c363bd Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Fri, 13 Jun 2025 19:45:29 +0530 Subject: [PATCH] fix: Syntax issues with autossh --- darwin/shiro/services/autossh.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/darwin/shiro/services/autossh.nix b/darwin/shiro/services/autossh.nix index 5900c86e..6e1e83ae 100644 --- a/darwin/shiro/services/autossh.nix +++ b/darwin/shiro/services/autossh.nix @@ -1,14 +1,13 @@ {...}: { services = { autossh = { - enable = true; - sessions = { - "mirai" = { + sessions = [ + { name = "mirai-socks"; extraArguments = "-N -D 1080 -M 0"; user = "fs0c131y"; - }; - }; + } + ]; }; }; }