2019-12-20 05:54:26 +01:00
|
|
|
{ lib, config, pkgs, ... }: {
|
2019-10-24 02:20:38 +02:00
|
|
|
imports = [
|
|
|
|
|
|
|
|
<system/server>
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
|
|
|
./bepasty.nix
|
2020-03-28 10:04:34 +01:00
|
|
|
#./castget.nix
|
2019-10-24 02:20:38 +02:00
|
|
|
./gogs.nix
|
|
|
|
./grafana.nix
|
|
|
|
./graylog.nix
|
|
|
|
./jenkins.nix
|
2020-06-01 14:34:41 +02:00
|
|
|
./kibana.nix
|
2020-02-24 04:45:36 +01:00
|
|
|
#./lektor-gaykraft.nix
|
|
|
|
#./lektor-terranix.nix
|
2019-10-24 02:20:38 +02:00
|
|
|
./mail-fetcher.nix
|
|
|
|
./packages.nix
|
|
|
|
./prometheus.nix
|
|
|
|
./syncthing.nix
|
|
|
|
./taskserver.nix
|
|
|
|
./tinc.nix
|
|
|
|
./transmission.nix
|
|
|
|
./weechat.nix
|
2020-03-21 09:36:49 +01:00
|
|
|
#./wetten.nix
|
2020-03-03 17:14:21 +01:00
|
|
|
./nextcloud.nix
|
2021-02-22 20:11:22 +01:00
|
|
|
#./mattermost.nix
|
2020-09-01 23:43:03 +02:00
|
|
|
./borg.nix
|
2021-07-10 16:30:23 +02:00
|
|
|
#./metabase.nix
|
|
|
|
#./jupyter.nix
|
2020-09-11 22:25:27 +02:00
|
|
|
./mysql.nix
|
2020-09-21 23:03:55 +02:00
|
|
|
./property.nix
|
2021-04-24 14:23:37 +02:00
|
|
|
./finance.nix
|
2021-05-02 05:11:07 +02:00
|
|
|
#./mining.nix
|
2019-10-24 02:20:38 +02:00
|
|
|
];
|
|
|
|
|
2021-02-12 12:29:41 +01:00
|
|
|
nixpkgs.config.permittedInsecurePackages =
|
|
|
|
[ "gogs-0.11.91" "nextcloud-19.0.6" ];
|
|
|
|
|
2020-03-17 08:00:57 +01:00
|
|
|
# todo: add this to each file instead summing that here
|
|
|
|
on-failure.plans = {
|
|
|
|
gogs.name = "gogs";
|
|
|
|
jenkins.name = "jenkins";
|
|
|
|
graylog.name = "graylog";
|
|
|
|
prometheus.name = "prometheus";
|
|
|
|
taskserver.name = "taskserver";
|
|
|
|
weechat.name = "weechat";
|
|
|
|
transmission.name = "transmission";
|
|
|
|
mail-fetcher.name = "fetchmail";
|
|
|
|
};
|
|
|
|
|
2019-12-20 05:54:26 +01:00
|
|
|
networking.hostName = "workhorse";
|
2019-10-24 02:20:38 +02:00
|
|
|
|
2020-04-29 21:32:54 +02:00
|
|
|
# font
|
|
|
|
# ----
|
|
|
|
programs.custom.urxvt.fontSize = 17;
|
|
|
|
programs.custom.xterm.fontSize = 17;
|
|
|
|
system.custom.fonts.dpi = 140;
|
|
|
|
|
2019-10-24 02:20:38 +02:00
|
|
|
# enable initrd ssh
|
|
|
|
configuration.init-ssh = {
|
|
|
|
enable = "enabled";
|
|
|
|
kernelModules = [ "r8169" ];
|
2021-04-24 14:23:51 +02:00
|
|
|
hostKey = "/etc/ssh/ssh_host_ed25519_key";
|
2019-10-24 02:20:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# nix-shell -p speedtest_cli --run speedtest
|
|
|
|
configuration.fireqos = {
|
|
|
|
enable = true;
|
2020-06-11 18:39:43 +02:00
|
|
|
interface = "enp2s0f1";
|
2020-05-16 02:25:06 +02:00
|
|
|
input = 45000;
|
|
|
|
output = 8000;
|
2019-10-24 02:20:38 +02:00
|
|
|
balance = false;
|
|
|
|
};
|
|
|
|
|
2020-04-29 21:32:54 +02:00
|
|
|
virtualisation = { docker.enable = false; };
|
2019-10-24 02:20:38 +02:00
|
|
|
|
2020-04-29 21:32:54 +02:00
|
|
|
services.printing.enable = false;
|
2020-03-10 10:23:49 +01:00
|
|
|
services.smartd.enable = true;
|
|
|
|
|
2019-10-24 02:20:38 +02:00
|
|
|
}
|
|
|
|
|