2016-03-26 03:22:52 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.mosh;
|
|
|
|
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.programs.mosh = {
|
2023-12-16 01:53:30 +00:00
|
|
|
enable = lib.mkEnableOption "mosh";
|
2023-12-10 10:16:09 +00:00
|
|
|
openFirewall = lib.mkEnableOption "" // {
|
|
|
|
description = "Whether to automatically open the necessary ports in the firewall.";
|
|
|
|
default = true;
|
|
|
|
};
|
2023-12-16 01:53:30 +00:00
|
|
|
withUtempter = lib.mkEnableOption "" // {
|
2018-06-01 22:29:33 +00:00
|
|
|
description = ''
|
|
|
|
Whether to enable libutempter for mosh.
|
2023-12-16 01:53:30 +00:00
|
|
|
|
2018-06-01 22:29:33 +00:00
|
|
|
This is required so that mosh can write to /var/run/utmp (which can be queried with `who` to display currently connected user sessions).
|
|
|
|
Note, this will add a guid wrapper for the group utmp!
|
|
|
|
'';
|
|
|
|
default = true;
|
|
|
|
};
|
2016-03-26 03:22:52 +00:00
|
|
|
};
|
|
|
|
|
2023-12-16 01:53:30 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [ pkgs.mosh ];
|
2023-12-10 10:16:09 +00:00
|
|
|
networking.firewall.allowedUDPPortRanges = lib.optional cfg.openFirewall { from = 60000; to = 61000; };
|
2023-12-16 01:53:30 +00:00
|
|
|
security.wrappers = lib.mkIf cfg.withUtempter {
|
2018-06-01 22:29:33 +00:00
|
|
|
utempter = {
|
|
|
|
source = "${pkgs.libutempter}/lib/utempter/utempter";
|
2021-10-03 09:43:13 +00:00
|
|
|
owner = "root";
|
2018-06-01 22:29:33 +00:00
|
|
|
group = "utmp";
|
|
|
|
setuid = false;
|
|
|
|
setgid = true;
|
|
|
|
};
|
|
|
|
};
|
2016-03-26 03:22:52 +00:00
|
|
|
};
|
|
|
|
}
|