19 lines
339 B
Nix
19 lines
339 B
Nix
flake-inputs:
|
|
{config, pkgs, lib, ... }: {
|
|
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules/jitsi.nix
|
|
../../roles
|
|
./network.nix
|
|
];
|
|
|
|
services.mathebau-jitsi = {
|
|
enable = true;
|
|
hostName = "meet.mathebau.de";
|
|
};
|
|
|
|
# System configuration here
|
|
networking.hostName = "ghatanothoa";
|
|
system.stateVersion = "23.11";
|
|
}
|