nixos-config/1systems/cake/config.nix

28 lines
894 B
Nix
Raw Normal View History

2017-10-03 15:42:42 +02:00
{ config, lib, pkgs, ... }:
let
primaryInterface = "eth0";
in {
2017-10-01 20:12:06 +02:00
imports = [
<stockholm/makefu>
./hardware-config.nix
2019-06-17 08:00:46 +02: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 08:00:46 +02:00
# configure your hw:
# <stockholm/makefu/2configs/save-diskspace.nix>
2017-10-01 20:12:06 +02: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 20:12:06 +02:00
services.nixosManual.enable = false;
2017-11-15 12:43:09 +01:00
sound.enable = false;
2017-10-01 20:12:06 +02:00
}