mosh program: init

This commit is contained in:
Aneesh Agrawal 2016-03-26 03:22:52 +00:00
parent 99fd109a85
commit 77a4bd1a58
2 changed files with 27 additions and 0 deletions

View file

@ -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

View file

@ -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; } ];
};
}