mosh program: init

wip/yesman
Aneesh Agrawal 8 years ago
parent 99fd109a85
commit 77a4bd1a58
  1. 1
      nixos/modules/module-list.nix
  2. 26
      nixos/modules/programs/mosh.nix

@ -71,6 +71,7 @@
./programs/kbdlight.nix
./programs/light.nix
./programs/man.nix
./programs/mosh.nix
./programs/nano.nix
./programs/screen.nix
./programs/shadow.nix

@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.mosh;
in
{
options.programs.mosh = {
enable = mkOption {
description = ''
Whether to enable mosh. Note, this will open ports in your firewall!
'';
default = false;
example = true;
type = lib.types.bool;
};
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ mosh ];
networking.firewall.allowedUDPPortRanges = [ { from = 60000; to = 61000; } ];
};
}
Loading…
Cancel
Save