2018-06-23 03:31:54 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2013-11-04 09:00:34 +01:00
|
|
|
|
|
|
|
let
|
2014-05-05 20:58:51 +02:00
|
|
|
inherit (lib) mkOption mkIf types;
|
2013-11-04 09:00:34 +01:00
|
|
|
cfg = config.programs.screen;
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
programs.screen = {
|
|
|
|
|
|
|
|
screenrc = mkOption {
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
The contents of /etc/screenrc file.
|
|
|
|
'';
|
|
|
|
type = types.lines;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf (cfg.screenrc != "") {
|
2019-08-13 23:52:01 +02:00
|
|
|
environment.etc.screenrc.text = cfg.screenrc;
|
2018-06-23 03:31:54 +02:00
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.screen ];
|
2020-01-03 16:16:25 +01:00
|
|
|
security.pam.services.screen = {};
|
2013-11-04 09:00:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|