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-09-02 10:02:05 +02:00
|
|
|
../2configs/fs/sda-crypto-root.nix
|
2015-08-07 12:53:38 +02:00
|
|
|
# hardware specifics are in here
|
2015-09-02 10:02:05 +02:00
|
|
|
../2configs/hw/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-24 13:00:26 +02:00
|
|
|
url = https://github.com/NixOS/nixpkgs;
|
|
|
|
#url = https://github.com/makefu/nixpkgs;
|
|
|
|
rev = "13576925552b1d0751498fdda22e91a055a1ff6c";
|
2015-08-02 23:12:38 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|