nixConfig/nixos/machines/ghatanothoa/configuration.nix

20 lines
383 B
Nix
Raw Normal View History

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