tv man: init

This commit is contained in:
tv 2016-02-17 23:35:25 +01:00
parent f5d0b2a402
commit 970eed2748
3 changed files with 9 additions and 4 deletions

View File

@ -12,6 +12,7 @@ with config.krebs.lib;
../2configs/git.nix
../2configs/im.nix
../2configs/mail-client.nix
../2configs/man.nix
../2configs/nginx-public_html.nix
../2configs/pulse.nix
../2configs/retiolum.nix
@ -40,14 +41,12 @@ with config.krebs.lib;
haskellPackages.hledger
htop
jq
manpages
mkpasswd
netcat
nix-repl
nmap
nq
p7zip
posix_man_pages
push
qrencode
texLive

View File

@ -11,6 +11,7 @@ with config.krebs.lib;
../2configs/exim-retiolum.nix
../2configs/git.nix
../2configs/mail-client.nix
../2configs/man.nix
../2configs/nginx-public_html.nix
../2configs/pulse.nix
../2configs/retiolum.nix
@ -52,7 +53,6 @@ with config.krebs.lib;
haskellPackages.hledger
htop
jq
manpages
mkpasswd
netcat
nix-repl
@ -60,7 +60,6 @@ with config.krebs.lib;
nq
p7zip
pass
posix_man_pages
qrencode
texLive
tmux

7
tv/2configs/man.nix Normal file
View File

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
manpages
posix_man_pages
];
}