stockholm/makefu/1systems/pornocauster.nix

72 lines
1.7 KiB
Nix
Raw Normal View History

2015-08-22 23:28:41 +00:00
#
#
#
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
2016-02-15 15:27:11 +00:00
../.
../2configs/main-laptop.nix #< base-gui + zsh
2016-02-26 22:38:50 +00:00
../2configs/laptop-utils.nix
2015-08-24 09:06:10 +00:00
# Krebs
#../2configs/disable_v6.nix
# applications
../2configs/exim-retiolum.nix
2015-10-20 12:25:49 +00:00
../2configs/mail-client.nix
../2configs/printer.nix
2015-11-06 22:54:27 +00:00
../2configs/virtualization.nix
../2configs/virtualization-virtualbox.nix
2015-08-24 09:06:10 +00:00
../2configs/wwan.nix
2015-08-22 23:28:41 +00:00
2015-09-02 08:02:05 +00:00
# services
../2configs/git/brain-retiolum.nix
2015-09-27 17:30:37 +00:00
../2configs/tor.nix
2016-06-02 12:44:11 +00:00
../2configs/steam.nix
# ../2configs/buildbot-standalone.nix
# hardware specifics are in here
2015-09-02 08:02:05 +00:00
../2configs/hw/tp-x220.nix
# mount points
../2configs/fs/sda-crypto-root-home.nix
2015-11-06 22:54:27 +00:00
# ../2configs/mediawiki.nix
#../2configs/wordpress.nix
2016-03-11 01:10:34 +00:00
../2configs/nginx/public_html.nix
2016-06-02 12:44:11 +00:00
# temporary modules
# ../2configs/temp/share-samba.nix
# ../2configs/temp/elkstack.nix
# ../2configs/temp/sabnzbd.nix
2015-08-22 23:28:41 +00:00
];
2016-06-02 12:44:11 +00:00
2016-03-19 22:37:27 +00:00
krebs.nginx = {
default404 = false;
servers.default.listen = [ "80 default_server" ];
servers.default.server-names = [ "_" ];
};
2016-06-02 12:44:11 +00:00
environment.systemPackages = [ pkgs.passwdqc-utils pkgs.bintray-upload ];
virtualisation.docker.enable = true;
# configure pulseAudio to provide a HDMI sink as well
2016-02-11 16:06:50 +00:00
networking.firewall.enable = true;
2016-06-02 12:44:11 +00:00
networking.firewall.allowedTCPPorts = [ 80 ];
networking.firewall.allowedUDPPorts = [ 665 ];
2015-08-22 23:28:41 +00:00
krebs.build.host = config.krebs.hosts.pornocauster;
2016-06-02 12:44:11 +00:00
krebs.hosts.omo.nets.retiolum.via.ip4.addr = "192.168.1.11";
krebs.retiolum = {
enable = true;
connectTo = [ "omo" "gum" "prism" ];
};
networking.extraHosts = ''
192.168.1.11 omo.local
'';
2015-08-22 23:28:41 +00:00
}