nixConfig/nixos/machines/ghatanothoa/configuration.nix

20 lines
339 B
Nix
Raw Normal View History

2023-10-18 15:04:30 +00:00
flake-inputs:
{config, pkgs, lib, ... }: {
imports = [
./hardware-configuration.nix
2023-10-23 15:43:13 +00:00
../../modules/jitsi.nix
2023-10-18 15:04:30 +00:00
../../roles
./network.nix
];
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-10-23 15:43:13 +00:00
# System configuration here
2023-10-18 15:04:30 +00:00
networking.hostName = "ghatanothoa";
system.stateVersion = "23.11";
}