summaryrefslogtreecommitdiff
path: root/modules/core/access/mosh.nix
blob: bc37257303f930a3221e7957ef4eccf010861a08 (plain) (blame)
1
2
3
4
5
6
7
{ config, lib, ... }:
{
  config.programs.mosh = lib.mkIf config.modules.mosh.enable {
    enable = true;
    openFirewall = false;
  };
}