nixos-config/nixos/machines/robi/configuration.nix

92 lines
1.8 KiB
Nix
Raw Normal View History

2021-12-28 16:19:29 +01:00
{ lib, config, pkgs, ... }: {
imports = [
2022-01-23 20:23:47 +01:00
../../system/all/borg-jobs.nix
2021-12-28 16:19:29 +01:00
../../system/all/defaults.nix
2022-01-23 20:23:47 +01:00
../../system/all/syncthing.nix
2021-12-30 01:35:19 +01:00
../../system/server/netdata.nix
2022-09-20 22:57:44 +02:00
../../system/server/packages.nix
2021-12-28 16:19:29 +01:00
2022-10-13 10:19:23 +02:00
../../components/network/sshd
2022-10-13 10:51:21 +02:00
../../components/network/tinc
../../modules
2022-10-13 10:19:23 +02:00
2021-12-28 16:19:29 +01:00
./hetzner.nix
2022-01-23 20:23:47 +01:00
2022-02-01 16:20:41 +01:00
./borg.nix
2022-01-23 20:23:47 +01:00
./codimd.nix
./gitea.nix
./grocy.nix
./nextcloud.nix
2021-12-28 16:19:29 +01:00
./packages.nix
2021-12-28 19:48:14 +01:00
./syncthing.nix
2021-12-29 19:46:20 +01:00
./taskserver.nix
2022-01-23 20:23:47 +01:00
./tinc.nix
2021-12-29 19:46:20 +01:00
./transmission.nix
2022-09-11 10:13:30 +02:00
./transmission2.nix
2022-01-23 20:23:47 +01:00
./vaultwarden.nix
2022-06-26 15:11:16 +02:00
./nginx.nix
2022-01-13 13:40:18 +01:00
2021-12-28 16:19:29 +01:00
#../../system/server
2021-12-28 19:48:14 +01:00
2021-12-28 16:19:29 +01:00
#./hardware-configuration.nix
#./mail-fetcher.nix
#./finance.nix
#./grafana.nix
#./graylog.nix
#./kibana.nix
#./mysql.nix
#./prometheus.nix
#./weechat.nix
#./property.nix # flask sucks, find something else
];
2022-01-01 10:31:13 +01:00
# 2 hours = 2 * 60 * 60 = 7200 seconds
#services.netdata.config.global.history = 7200;
# 4 hours = 4 * 60 * 60 = 14440 seconds
services.netdata.config.global.history = 14440;
# 24 hours = 24 * 60 * 60 = 86400 seconds
#services.netdata.config.global.history = 86400;
2021-12-31 19:15:48 +01:00
services.sshguard.enable = true;
2021-12-29 19:46:20 +01:00
# Shell configuration
# -------------------
programs.custom = {
bash.enable = true;
zsh.enable = true;
};
security.acme.acceptTerms = true;
security.acme.defaults.email = "contact@ingolf-wagner.de";
2021-12-28 16:19:29 +01:00
sops.defaultSopsFile = ../../secrets/robi.yaml;
virtualisation.docker.enable = false;
services.printing.enable = false;
services.smartd.enable = true;
fileSystems."/var/lib/nextcloud" =
{
device = "/dev/vg/nextcloud";
fsType = "ext4";
};
2022-02-01 16:20:41 +01:00
fileSystems."/var/lib/borgbackup" =
{
device = "/dev/vg/borg";
fsType = "ext4";
};
2021-12-28 19:48:14 +01:00
fileSystems."/media" =
{
device = "/dev/vg/media";
fsType = "ext4";
};
2021-12-28 16:19:29 +01:00
}