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-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-08-22 23:28:41 +00:00
|
|
|
#../2configs/sda-crypto-root.nix
|
|
|
|
../2configs/sda-crypto-root-home.nix
|
|
|
|
|
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-08-24 09:06:10 +00:00
|
|
|
../2configs/virtualization.nix
|
|
|
|
../2configs/wwan.nix
|
2015-08-22 23:28:41 +00:00
|
|
|
|
2015-08-31 17:56:47 +00:00
|
|
|
../2configs/Reaktor/simpleExtend.nix
|
|
|
|
|
2015-08-23 00:48:35 +00:00
|
|
|
# hardware specifics are in here
|
|
|
|
../2configs/tp-x220.nix
|
2015-08-22 23:28:41 +00:00
|
|
|
];
|
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-08-22 23:28:41 +00:00
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
25
|
|
|
|
];
|
|
|
|
|
|
|
|
krebs.build.deps = {
|
|
|
|
nixpkgs = {
|
2015-08-24 11:00:26 +00:00
|
|
|
url = https://github.com/NixOS/nixpkgs;
|
|
|
|
#url = https://github.com/makefu/nixpkgs;
|
|
|
|
rev = "13576925552b1d0751498fdda22e91a055a1ff6c";
|
2015-08-22 23:28:41 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|