forked from Fachschaft/nixConfig
21 lines
370 B
Nix
21 lines
370 B
Nix
|
{
|
||
|
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";
|
||
|
}
|