infrastructure/nixos/hosts/olympus/outline/configuration.nix

64 lines
2.1 KiB
Nix
Raw Normal View History

2022-09-20 14:33:24 +02:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
2022-09-20 16:38:57 +02:00
let vs = config.vault-secrets.secrets; in
2022-09-20 14:33:24 +02:00
{
imports = [ ];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.11"; # Did you read the comment?
# Additional packages
environment.systemPackages = with pkgs; [ ];
2022-09-20 16:38:57 +02:00
networking.firewall.allowedTCPPorts = [
config.services.outline.port
];
2022-09-24 13:57:01 +02:00
vault-secrets.secrets.outline = {
2022-12-01 22:13:05 +01:00
inherit (config.services.outline) user group;
2022-09-21 12:45:34 +02:00
};
2022-09-20 16:38:57 +02:00
services.outline = {
2022-09-21 09:51:08 +02:00
enable = true;
2022-09-20 16:38:57 +02:00
concurrency = 1;
port = 3000;
redisUrl = "local";
databaseUrl = "local";
publicUrl = "https://outline.0x76.dev";
utilsSecretFile = "${vs.outline}/utilsSecret";
secretKeyFile = "${vs.outline}/secretKey";
storage = {
accessKey = "outline";
secretKeyFile = "${vs.outline}/s3key";
uploadBucketUrl = "https://o.0x76.dev";
uploadBucketName = "outline";
region = "us-east-1"; # fake
};
2022-09-21 12:45:34 +02:00
oidcAuthentication = {
2022-09-24 13:57:01 +02:00
displayName = "Keycloak";
userinfoUrl = "https://id.0x76.dev/realms/master/protocol/openid-connect/userinfo";
tokenUrl = "https://id.0x76.dev/realms/master/protocol/openid-connect/token";
clientId = "outline";
authUrl = "https://id.0x76.dev/realms/master/protocol/openid-connect/auth";
clientSecretFile = "${vs.outline}/keycloakClientSecret";
2022-09-21 12:45:34 +02:00
};
2022-09-25 23:49:26 +02:00
smtp = rec {
username = "outline@0x76.dev";
fromEmail = username;
replyEmail = username;
secure = true;
port = 465;
host = "mail.0x76.dev";
passwordFile = "${vs.outline}/mailPassword";
};
2022-09-20 16:38:57 +02:00
};
2022-09-20 14:33:24 +02:00
}