stockholm/tv/2configs/man.nix

14 lines
311 B
Nix
Raw Normal View History

2016-02-17 23:35:25 +01:00
{ config, lib, pkgs, ... }:
{
2016-10-06 19:16:42 +02: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 23:35:25 +01:00
environment.systemPackages = with pkgs; [
manpages
posix_man_pages
2019-04-24 23:47:00 +02:00
xorg.xorgdocs
2016-02-17 23:35:25 +01:00
];
}