summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2016-02-17 23:35:25 +0100
committertv <tv@krebsco.de>2016-02-17 23:35:25 +0100
commit970eed274818cb49517fa5ef8b39a30d99302f1e (patch)
tree1503fe46cc482af2a1e37f76d457bc2e236d4456
parentf5d0b2a4020b3bd5150f9861fb27a7faaddbd0b9 (diff)
tv man: init
-rw-r--r--tv/1systems/wu.nix3
-rw-r--r--tv/1systems/xu.nix3
-rw-r--r--tv/2configs/man.nix7
3 files changed, 9 insertions, 4 deletions
diff --git a/tv/1systems/wu.nix b/tv/1systems/wu.nix
index 2b6dca1c..8c363d9f 100644
--- a/tv/1systems/wu.nix
+++ b/tv/1systems/wu.nix
@@ -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
diff --git a/tv/1systems/xu.nix b/tv/1systems/xu.nix
index d4295d3b..c6a69a85 100644
--- a/tv/1systems/xu.nix
+++ b/tv/1systems/xu.nix
@@ -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
diff --git a/tv/2configs/man.nix b/tv/2configs/man.nix
new file mode 100644
index 00000000..686e574f
--- /dev/null
+++ b/tv/2configs/man.nix
@@ -0,0 +1,7 @@
+{ config, lib, pkgs, ... }:
+{
+ environment.systemPackages = with pkgs; [
+ manpages
+ posix_man_pages
+ ];
+}