diff options
author | lassulus <lass@aidsballs.de> | 2016-02-18 17:07:49 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-02-18 17:07:49 +0100 |
commit | 0f225385758ebb156d49d05f03fe76c15023e200 (patch) | |
tree | 80a66df538e3c25f37cba726ef27669bbefdc18e /tv/2configs/man.nix | |
parent | e1a77d240eaedafbb58a387da94c863118533574 (diff) | |
parent | ffc47bf80d521635021b3f7a0122092708ebd2bf (diff) |
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'tv/2configs/man.nix')
-rw-r--r-- | tv/2configs/man.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tv/2configs/man.nix b/tv/2configs/man.nix new file mode 100644 index 000000000..a84e60b73 --- /dev/null +++ b/tv/2configs/man.nix @@ -0,0 +1,12 @@ +{ config, lib, pkgs, ... }: +{ + environment.etc."man.conf".source = pkgs.runCommand "man.conf" {} '' + ${pkgs.gnused}/bin/sed <${pkgs.man}/lib/man.conf >$out ' + s:^NROFF\t.*:& -Wbreak: + ' + ''; + environment.systemPackages = with pkgs; [ + manpages + posix_man_pages + ]; +} |