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

19 lines
356 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
#
2020-12-31 02:51:13 +01:00
./hardware-configuration.nix
./ssh.nix
2020-12-31 18:20:20 +01:00
#./jitsi.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;
}