2017-10-03 13:42:42 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2019-02-09 22:19:19 +00:00
|
|
|
let
|
|
|
|
primaryInterface = "eth0";
|
|
|
|
in {
|
2017-10-01 18:12:06 +00:00
|
|
|
imports = [
|
|
|
|
<stockholm/makefu>
|
2019-01-13 22:05:12 +00:00
|
|
|
./hardware-config.nix
|
2019-06-17 06:00:46 +00:00
|
|
|
{ environment.systemPackages = with pkgs;[ rsync screen curl git tmux picocom mosh ];}
|
2019-02-09 22:19:19 +00:00
|
|
|
# <stockholm/makefu/2configs/tools/core.nix>
|
|
|
|
<stockholm/makefu/2configs/binary-cache/nixos.nix>
|
|
|
|
#<stockholm/makefu/2configs/support-nixos.nix>
|
|
|
|
<stockholm/makefu/2configs/homeautomation/default.nix>
|
|
|
|
<stockholm/makefu/2configs/homeautomation/google-muell.nix>
|
2019-06-17 06:00:46 +00:00
|
|
|
# configure your hw:
|
|
|
|
# <stockholm/makefu/2configs/save-diskspace.nix>
|
2017-10-01 18:12:06 +00:00
|
|
|
];
|
|
|
|
krebs = {
|
|
|
|
enable = true;
|
|
|
|
tinc.retiolum.enable = true;
|
|
|
|
build.host = config.krebs.hosts.cake;
|
|
|
|
};
|
2019-02-09 22:19:19 +00:00
|
|
|
networking.firewall.trustedInterfaces = [ primaryInterface ];
|
2019-01-13 22:05:12 +00:00
|
|
|
documentation.info.enable = false;
|
|
|
|
documentation.man.enable = false;
|
2017-10-01 18:12:06 +00:00
|
|
|
services.nixosManual.enable = false;
|
2017-11-15 11:43:09 +00:00
|
|
|
sound.enable = false;
|
2017-10-01 18:12:06 +00:00
|
|
|
}
|