flaky stuff
This commit is contained in:
parent
7367201424
commit
6d4640a018
4 changed files with 32 additions and 6 deletions
|
|
@ -66,14 +66,16 @@
|
||||||
modules = [
|
modules = [
|
||||||
{
|
{
|
||||||
networking.hostName = "arielle";
|
networking.hostName = "arielle";
|
||||||
|
networking.domain = "ktiu.net";
|
||||||
boot.loader.grub.enable = true;
|
boot.loader.grub.enable = true;
|
||||||
boot.loader.grub.device = "/dev/sda";
|
boot.loader.grub.device = "/dev/sda";
|
||||||
}
|
}
|
||||||
|
./system/hardware/arielle.nix
|
||||||
./system
|
./system
|
||||||
./system/web-server
|
./system/web-server
|
||||||
./system/web-server/outline.nix
|
./system/web-server/outline.nix
|
||||||
./system/web-server/jenkins.nix
|
./system/web-server/jenkins.nix
|
||||||
./system/hardware/arielle.nix
|
./system/web-server/mail.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||||
|
|
||||||
services.jenkins.enable = true;
|
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
22
system/web-server/mail.nix
Normal file
22
system/web-server/mail.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
services.postfix = {
|
||||||
|
enable = true;
|
||||||
|
domain = "ktiu.net";
|
||||||
|
virtual = [
|
||||||
|
"@ktiu.net till"
|
||||||
|
"till till"
|
||||||
|
"uni@ktiu.net straube@geo.uni-frankfurt.de"
|
||||||
|
"meetup@ktiu.net straube@geo.uni-frankfurt.de"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
services.opendkim = {
|
||||||
|
enable = true;
|
||||||
|
domains = "csl:ktiu.net";
|
||||||
|
selector = "202412";
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -2,10 +2,13 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
services.outline = {
|
# services.outline = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
storage.storageType = "local";
|
# storage.storageType = "local";
|
||||||
};
|
# smtp = {
|
||||||
|
# host = "localhost";
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
|
||||||
services.nginx.virtualHosts."outline.ktiu.net" = {
|
services.nginx.virtualHosts."outline.ktiu.net" = {
|
||||||
addSSL = true;
|
addSSL = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue