2023-08-10 21:53:21 +00:00
|
|
|
## Secure Shell
|
|
|
|
## ============
|
|
|
|
##
|
|
|
|
## Provide SSH service using Dropbear
|
|
|
|
|
|
|
|
{ lib, pkgs, config, ...}:
|
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
inherit (pkgs) liminix;
|
2024-12-29 13:27:27 +00:00
|
|
|
inherit (pkgs.pseudofile) dir file;
|
2023-08-10 21:53:21 +00:00
|
|
|
mkBoolOption = description : mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
inherit description;
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
system.service.ssh = mkOption {
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
|
|
|
};
|
2024-08-23 19:35:07 +00:00
|
|
|
config.programs.busybox.options.FEATURE_FANCY_ECHO = "y";
|
2024-12-29 13:27:27 +00:00
|
|
|
config.filesystem = dir {
|
|
|
|
etc = dir {
|
|
|
|
shells = {
|
|
|
|
file = "/bin/sh\n";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-08-10 21:53:21 +00:00
|
|
|
config.system.service = {
|
2024-07-15 18:00:08 +00:00
|
|
|
ssh = config.system.callService ./ssh.nix {
|
2023-08-10 21:53:21 +00:00
|
|
|
address = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
description = "Listen on specified address";
|
|
|
|
example = "127.0.0.1";
|
|
|
|
};
|
|
|
|
port = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 22;
|
|
|
|
description = "Listen on specified TCP port";
|
|
|
|
};
|
|
|
|
allowRoot = mkBoolOption "Allow root to login";
|
|
|
|
allowPasswordLogin = mkBoolOption "Allow login using password (disable for public key auth only)";
|
|
|
|
allowPasswordLoginForRoot = mkBoolOption "Allow root to login using password (disable for public key auth only)";
|
|
|
|
allowLocalPortForward = mkBoolOption "Enable local port forwarding";
|
|
|
|
allowRemotePortForward = mkBoolOption "Enable remote port forwarding";
|
|
|
|
allowRemoteConnectionToForwardedPorts = mkOption {
|
|
|
|
type = types.bool; default = false;
|
|
|
|
description = "Allow remote hosts to connect to local forwarded ports (by default they are bound to loopback)";
|
|
|
|
};
|
2024-08-23 19:35:07 +00:00
|
|
|
authorizedKeys = mkOption {
|
2024-08-25 15:35:50 +00:00
|
|
|
type = types.nullOr (liminix.lib.types.replacable (types.attrsOf (types.listOf types.nonEmptyStr)));
|
2024-08-23 19:35:07 +00:00
|
|
|
example = {
|
|
|
|
root = ["ssh-rsa AAAAB3N...aZaZ"];
|
|
|
|
alice = ["ssh-rsa AAAAB3N...qS4r"];
|
|
|
|
bob = [];
|
|
|
|
};
|
|
|
|
default = null;
|
|
|
|
description = "Authorized SSH public keys for each username. If this optin is provided it overrides any keys found in /home/{username}/.ssh";
|
|
|
|
};
|
2023-08-10 21:53:21 +00:00
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.separatedString " ";
|
|
|
|
default = "";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|