nixos-config/terranix/workadventure-jitsi-setup/plops/configs/nixserver-host/configuration.nix

21 lines
390 B
Nix
Raw Normal View History

2020-12-30 01:18:37 +01:00
{ config, pkgs, lib, ... }: {
2020-12-31 02:51:13 +01:00
imports = [
2020-12-31 16:30:31 +01:00
#
2021-01-10 13:28:59 +01:00
./codimd.nix
2021-01-17 16:57:20 +01:00
./hardware-configuration.nix
2021-01-07 22:21:48 +01:00
./jitsi.nix
2021-01-17 16:57:20 +01:00
./netdata.nix
2021-01-10 13:28:59 +01:00
./ssh.nix
2020-12-31 02:51:13 +01:00
./workadventure.nix
];
2020-12-30 01:18:37 +01:00
2020-12-31 18:04:02 +01:00
environment.systemPackages =
[ pkgs.git pkgs.docker-compose pkgs.ag pkgs.htop ];
2020-12-30 01:18:37 +01:00
networking.hostName = "host";
security.acme.email = "contact@ingolf-wagner.de";
security.acme.acceptTerms = true;
}