-
-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1172 from Enzime/push-yxtrnyuxzmny
openssh: init module
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ config, lib, ... }: | ||
|
||
let | ||
cfg = config.services.openssh; | ||
in | ||
{ | ||
options = { | ||
services.openssh.enable = lib.mkOption { | ||
type = lib.types.nullOr lib.types.bool; | ||
default = null; | ||
description = '' | ||
Whether to enable Apple's built-in OpenSSH server. | ||
The default is null which means let macOS manage the OpenSSH server. | ||
''; | ||
}; | ||
}; | ||
|
||
config = { | ||
# We don't use `systemsetup -setremotelogin` as it requires Full Disk Access | ||
system.activationScripts.launchd.text = lib.mkIf (cfg.enable != null) (if cfg.enable then '' | ||
if [[ "$(systemsetup -getremotelogin | sed 's/Remote Login: //')" == "Off" ]]; then | ||
launchctl enable system/com.openssh.sshd | ||
launchctl bootstrap system /System/Library/LaunchDaemons/ssh.plist | ||
fi | ||
'' else '' | ||
if [[ "$(systemsetup -getremotelogin | sed 's/Remote Login: //')" == "On" ]]; then | ||
launchctl bootout system/com.openssh.sshd | ||
launchctl disable system/com.openssh.sshd | ||
fi | ||
''); | ||
}; | ||
} |