stockholm/tv/2configs/man.nix

14 lines
311 B
Nix
Raw Normal View History

2016-02-17 22:35:25 +00:00
{ config, lib, pkgs, ... }:
{
2016-10-06 17:16:42 +00:00
#environment.etc."man.conf".source = pkgs.runCommand "man.conf" {} ''
# ${pkgs.gnused}/bin/sed <${pkgs.man}/lib/man.conf >$out '
# s:^NROFF\t.*:& -Wbreak:
# '
#'';
2016-02-17 22:35:25 +00:00
environment.systemPackages = with pkgs; [
manpages
posix_man_pages
2019-04-24 21:47:00 +00:00
xorg.xorgdocs
2016-02-17 22:35:25 +00:00
];
}