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