nixConfig/nixos/machines/ghatanothoa/configuration.nix

20 lines
383 B
Nix
Raw Normal View History

2023-11-08 00:47:14 +01:00
{
imports = [
./hardware-configuration.nix
../../modules/jitsi.nix
../../roles
../../roles/vm.nix
../../modules/vmNetwork.nix
2023-11-08 00:47:14 +01:00
];
2023-10-18 17:04:30 +02:00
2023-10-23 17:43:13 +02:00
services.mathebau-jitsi = {
enable = true;
hostName = "meet.mathebau.de";
};
2023-10-18 17:04:30 +02:00
2023-11-08 00:47:14 +01:00
# System configuration here
2023-10-18 17:04:30 +02:00
networking.hostName = "ghatanothoa";
vmNetwork.ipv4 = "192.168.0.25";
2023-10-18 17:04:30 +02:00
system.stateVersion = "23.11";
}