2015-08-23 01:28:41 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
2016-02-15 16:27:11 +01:00
|
|
|
../.
|
2015-12-16 12:29:24 +01:00
|
|
|
../2configs/main-laptop.nix #< base-gui + zsh
|
2016-02-26 23:38:50 +01:00
|
|
|
../2configs/laptop-utils.nix
|
2015-08-23 02:48:35 +02:00
|
|
|
|
2015-08-24 11:06:10 +02:00
|
|
|
# Krebs
|
|
|
|
#../2configs/disable_v6.nix
|
|
|
|
|
|
|
|
|
|
|
|
# applications
|
2015-12-04 22:42:44 +01:00
|
|
|
|
2015-08-23 02:48:35 +02:00
|
|
|
../2configs/exim-retiolum.nix
|
2015-10-20 14:25:49 +02:00
|
|
|
../2configs/mail-client.nix
|
2015-12-04 22:42:44 +01:00
|
|
|
../2configs/printer.nix
|
2015-11-06 23:54:27 +01:00
|
|
|
../2configs/virtualization.nix
|
2015-12-04 22:42:44 +01:00
|
|
|
../2configs/virtualization-virtualbox.nix
|
2015-08-24 11:06:10 +02:00
|
|
|
../2configs/wwan.nix
|
2015-08-23 01:28:41 +02:00
|
|
|
|
2015-09-02 10:02:05 +02:00
|
|
|
# services
|
|
|
|
../2configs/git/brain-retiolum.nix
|
2015-09-27 19:30:37 +02:00
|
|
|
../2configs/tor.nix
|
2015-12-26 11:41:41 +01:00
|
|
|
# ../2configs/buildbot-standalone.nix
|
2015-08-31 19:56:47 +02:00
|
|
|
|
2015-08-23 02:48:35 +02:00
|
|
|
# hardware specifics are in here
|
2015-09-02 10:02:05 +02:00
|
|
|
../2configs/hw/tp-x220.nix
|
|
|
|
# mount points
|
|
|
|
../2configs/fs/sda-crypto-root-home.nix
|
2015-11-06 23:54:27 +01:00
|
|
|
# ../2configs/mediawiki.nix
|
|
|
|
#../2configs/wordpress.nix
|
2016-03-11 02:10:34 +01:00
|
|
|
../2configs/nginx/public_html.nix
|
2015-08-23 01:28:41 +02:00
|
|
|
];
|
2016-03-19 23:37:27 +01:00
|
|
|
krebs.nginx = {
|
|
|
|
default404 = false;
|
|
|
|
servers.default.listen = [ "80 default_server" ];
|
|
|
|
servers.default.server-names = [ "_" ];
|
|
|
|
};
|
2016-03-11 02:10:34 +01:00
|
|
|
krebs.retiolum.enable = true;
|
2016-02-26 23:38:50 +01:00
|
|
|
# steam
|
|
|
|
hardware.opengl.driSupport32Bit = true;
|
|
|
|
hardware.pulseaudio.support32Bit = true;
|
2015-12-15 21:18:29 +01:00
|
|
|
|
2015-10-14 00:10:56 +02:00
|
|
|
# configure pulseAudio to provide a HDMI sink as well
|
2016-02-11 17:06:50 +01:00
|
|
|
networking.firewall.enable = true;
|
2015-08-23 01:28:41 +02:00
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
25
|
2016-03-11 02:23:04 +01:00
|
|
|
80
|
2015-08-23 01:28:41 +02:00
|
|
|
];
|
|
|
|
|
2015-12-15 21:18:29 +01:00
|
|
|
krebs.build.host = config.krebs.hosts.pornocauster;
|
2015-08-23 01:28:41 +02:00
|
|
|
}
|