31 lines
		
	
	
		
			468 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			468 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, ... }:
 | 
						|
 | 
						|
let
 | 
						|
  inherit (lib) mkOption mkIf types;
 | 
						|
  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 != "") {
 | 
						|
    environment.etc."screenrc".text = cfg.screenrc;
 | 
						|
  };
 | 
						|
 | 
						|
}
 |