nixConfig/nixos/machines/lobon/configuration.nix

21 lines
370 B
Nix
Raw Normal View History

2024-02-05 20:36:51 +00:00
{
imports = [
./hardware-configuration.nix
../../modules/mailman.nix
../../roles
../../roles/vm.nix
./network.nix
];
# System configuration here
services.mathebau-mailman = {
enable = true;
hostName = "lists.mathebau.de";
siteOwner = "root@mathebau.de";
};
networking.hostName = "lobon";
system.stateVersion = "23.11";
}