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-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-08-24 09:06:10 +00:00
|
|
|
../2configs/virtualization.nix
|
|
|
|
../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
|
|
|
|
# ../2configs/Reaktor/simpleExtend.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-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-09-02 08:02:05 +00:00
|
|
|
#krebs.Reaktor.nickname = "makefu|r";
|
|
|
|
|
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;
|
2015-09-02 08:02:05 +00:00
|
|
|
rev = "03921972268934d900cc32dad253ff383926771c";
|
2015-08-22 23:28:41 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|