stockholm/makefu/1systems/cake/config.nix

28 lines
894 B
Nix
Raw Normal View History

2017-10-03 13:42:42 +00:00
{ config, lib, pkgs, ... }:
let
primaryInterface = "eth0";
in {
2017-10-01 18:12:06 +00:00
imports = [
<stockholm/makefu>
./hardware-config.nix
2019-06-17 06:00:46 +00:00
{ environment.systemPackages = with pkgs;[ rsync screen curl git tmux picocom mosh ];}
# <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;
};
networking.firewall.trustedInterfaces = [ primaryInterface ];
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
}