nixConfig/nixos/machines/ghatanothoa/configuration.nix
2023-10-23 19:05:51 +02:00

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";
}