2015-08-11 21:00:22 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
2015-08-02 23:12:38 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
../2configs/base.nix
|
|
|
|
../2configs/base-gui.nix
|
2015-08-07 12:53:38 +02:00
|
|
|
../2configs/tinc-basic-retiolum.nix
|
2015-08-07 12:10:02 +02:00
|
|
|
../2configs/sda-crypto-root.nix
|
2015-08-07 12:53:38 +02:00
|
|
|
# hardware specifics are in here
|
2015-08-23 02:48:35 +02:00
|
|
|
../2configs/tp-x200.nix #< imports tp-x2x0.nix
|
2015-08-14 15:59:05 +02:00
|
|
|
|
|
|
|
../2configs/disable_v6.nix
|
|
|
|
../2configs/rad1o.nix
|
2015-08-17 23:24:37 +02:00
|
|
|
|
2015-08-23 02:48:35 +02:00
|
|
|
../2configs/zsh-user.nix
|
2015-08-17 23:24:37 +02:00
|
|
|
../2configs/exim-retiolum.nix
|
2015-08-02 23:12:38 +02:00
|
|
|
];
|
2015-08-05 15:11:52 +02:00
|
|
|
# not working in vm
|
2015-08-02 23:12:38 +02:00
|
|
|
krebs.build.host = config.krebs.hosts.tsp;
|
|
|
|
krebs.build.user = config.krebs.users.makefu;
|
|
|
|
krebs.build.target = "root@tsp";
|
|
|
|
|
2015-08-17 23:24:37 +02:00
|
|
|
|
2015-08-13 17:15:09 +02:00
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
25
|
|
|
|
];
|
|
|
|
|
2015-08-02 23:12:38 +02:00
|
|
|
krebs.build.deps = {
|
|
|
|
nixpkgs = {
|
2015-08-05 15:11:52 +02:00
|
|
|
#url = https://github.com/NixOS/nixpkgs;
|
2015-08-07 12:10:02 +02:00
|
|
|
# rev=$(curl https://nixos.org/channels/nixos-unstable/git-revision -L)
|
2015-08-05 15:11:52 +02:00
|
|
|
url = https://github.com/makefu/nixpkgs;
|
2015-08-17 23:24:37 +02:00
|
|
|
#rev = "8b8b65da24f13f9317504e8bcba476f9161613fe";
|
|
|
|
rev = "f5fe787f778b872c6b2221598501c9310cb83915";
|
2015-08-02 23:12:38 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|