2015-08-11 19:00:22 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
2015-08-02 21:12:38 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
../2configs/base.nix
|
|
|
|
../2configs/base-gui.nix
|
2015-08-07 10:53:38 +00:00
|
|
|
../2configs/tinc-basic-retiolum.nix
|
2015-08-07 10:10:02 +00:00
|
|
|
../2configs/sda-crypto-root.nix
|
2015-08-07 10:53:38 +00:00
|
|
|
# hardware specifics are in here
|
2015-08-23 00:48:35 +00:00
|
|
|
../2configs/tp-x200.nix #< imports tp-x2x0.nix
|
2015-08-14 13:59:05 +00:00
|
|
|
|
|
|
|
../2configs/disable_v6.nix
|
|
|
|
../2configs/rad1o.nix
|
2015-08-17 21:24:37 +00:00
|
|
|
|
2015-08-23 00:48:35 +00:00
|
|
|
../2configs/zsh-user.nix
|
2015-08-17 21:24:37 +00:00
|
|
|
../2configs/exim-retiolum.nix
|
2015-08-02 21:12:38 +00:00
|
|
|
];
|
2015-08-05 13:11:52 +00:00
|
|
|
# not working in vm
|
2015-08-02 21:12:38 +00:00
|
|
|
krebs.build.host = config.krebs.hosts.tsp;
|
|
|
|
krebs.build.user = config.krebs.users.makefu;
|
|
|
|
krebs.build.target = "root@tsp";
|
|
|
|
|
2015-08-17 21:24:37 +00:00
|
|
|
|
2015-08-13 15:15:09 +00:00
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
25
|
|
|
|
];
|
|
|
|
|
2015-08-02 21:12:38 +00:00
|
|
|
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-02 21:12:38 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|