2015-08-22 23:28:41 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
../2configs/base.nix
|
2015-08-23 00:48:35 +00:00
|
|
|
../2configs/main-laptop.nix #< base-gui
|
|
|
|
|
2015-09-27 17:30:37 +00:00
|
|
|
# configures sources
|
|
|
|
../2configs/base-sources.nix
|
|
|
|
|
2015-08-24 09:06:10 +00:00
|
|
|
# Krebs
|
2015-08-22 23:28:41 +00:00
|
|
|
../2configs/tinc-basic-retiolum.nix
|
2015-08-24 09:06:10 +00:00
|
|
|
#../2configs/disable_v6.nix
|
|
|
|
|
2015-09-02 08:02:05 +00:00
|
|
|
# environment
|
2015-08-23 00:48:35 +00:00
|
|
|
../2configs/zsh-user.nix
|
2015-08-24 09:06:10 +00:00
|
|
|
|
|
|
|
# applications
|
2015-08-23 00:48:35 +00:00
|
|
|
../2configs/exim-retiolum.nix
|
2015-09-27 17:30:37 +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
|
2015-08-31 17:56:47 +00:00
|
|
|
|
2015-08-23 00:48:35 +00:00
|
|
|
# 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-08-22 23:28:41 +00:00
|
|
|
];
|
2015-09-27 17:30:37 +00:00
|
|
|
krebs.Reaktor.enable = true;
|
|
|
|
krebs.Reaktor.debug = true;
|
|
|
|
krebs.Reaktor.nickname = "makefu|r";
|
2015-08-23 00:48:35 +00:00
|
|
|
|
2015-08-22 23:28:41 +00:00
|
|
|
krebs.build.host = config.krebs.hosts.pornocauster;
|
|
|
|
krebs.build.user = config.krebs.users.makefu;
|
2015-08-23 00:48:35 +00:00
|
|
|
krebs.build.target = "root@pornocauster";
|
|
|
|
|
2015-10-13 22:10:56 +00:00
|
|
|
environment.systemPackages = with pkgs;[ get ];
|
|
|
|
|
|
|
|
services.logind.extraConfig = "HandleLidSwitch=ignore";
|
|
|
|
# configure pulseAudio to provide a HDMI sink as well
|
|
|
|
hardware.pulseaudio.configFile = pkgs.writeText "pulse-default-pa" ''
|
|
|
|
${builtins.readFile "${config.hardware.pulseaudio.package}/etc/pulse/default.pa"}
|
|
|
|
load-module module-alsa-sink device=hw:0,3 sink_properties=device.description="HDMIOutput" sink_name="HDMI"'';
|
2015-08-22 23:28:41 +00:00
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
25
|
|
|
|
];
|
|
|
|
|
|
|
|
}
|