2015-07-07 04:20:50 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
location = pkgs.lib.nameValuePair; # TODO this is also in modules/tv/git/cgit.nix
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
./users.nix
|
|
|
|
../tv/base.nix
|
2015-07-07 04:56:42 +00:00
|
|
|
../tv/environment.nix
|
2015-07-07 04:20:50 +00:00
|
|
|
../tv/exim-retiolum.nix
|
|
|
|
../tv/git/public.nix
|
|
|
|
../tv/sanitize.nix
|
|
|
|
../tv/smartd.nix
|
|
|
|
{
|
|
|
|
imports = [ ../tv/iptables ];
|
|
|
|
tv.iptables = {
|
|
|
|
enable = true;
|
|
|
|
input-internet-accept-new-tcp = [
|
|
|
|
"ssh"
|
|
|
|
"http"
|
|
|
|
"tinc"
|
|
|
|
"smtp"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
{
|
|
|
|
imports = [ ../tv/nginx ];
|
|
|
|
tv.nginx = {
|
|
|
|
enable = true;
|
|
|
|
retiolum-locations = [
|
|
|
|
(location "~ ^/~(.+?)(/.*)?\$" ''
|
|
|
|
alias /home/$1/public_html$2;
|
|
|
|
'')
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
{
|
|
|
|
imports = [ ../tv/retiolum ];
|
|
|
|
tv.retiolum = {
|
|
|
|
enable = true;
|
|
|
|
hosts = <retiolum-hosts>;
|
|
|
|
connectTo = [
|
|
|
|
"gum"
|
|
|
|
"pigstarter"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
boot.kernel.sysctl = {
|
|
|
|
# Enable IPv6 Privacy Extensions
|
|
|
|
"net.ipv6.conf.all.use_tempaddr" = 2;
|
|
|
|
"net.ipv6.conf.default.use_tempaddr" = 2;
|
|
|
|
};
|
|
|
|
|
2015-07-07 17:19:29 +00:00
|
|
|
boot.tmpOnTmpfs = true;
|
|
|
|
|
2015-07-07 04:35:51 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
(writeScriptBin "play" ''
|
|
|
|
#! /bin/sh
|
|
|
|
set -euf
|
2015-07-07 17:27:59 +00:00
|
|
|
mpv() { exec ${mpv}/bin/mpv "$@"; }
|
2015-07-07 04:35:51 +00:00
|
|
|
case $1 in
|
|
|
|
deepmix) mpv http://deepmix.ru/deepmix128.pls;;
|
|
|
|
groovesalad) mpv http://somafm.com/play/groovesalad;;
|
|
|
|
ntslive) mpv http://listen2.ntslive.co.uk/listen.pls;;
|
|
|
|
*)
|
|
|
|
echo "$0: bad argument: $*" >&2
|
|
|
|
exit 23
|
|
|
|
esac
|
|
|
|
'')
|
|
|
|
rxvt_unicode.terminfo
|
|
|
|
tmux
|
|
|
|
];
|
|
|
|
|
2015-07-07 04:20:50 +00:00
|
|
|
networking = {
|
|
|
|
hostName = "nomic";
|
|
|
|
wireless.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
|
|
|
hostKeys = [
|
|
|
|
{ type = "ed25519"; path = "/etc/ssh/ssh_host_ed25519_key"; }
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|