n8n to unstable

This commit is contained in:
m3tam3re 2023-03-30 06:27:29 +02:00
parent 1736c8dc07
commit 9bee8d26c7
2 changed files with 11 additions and 4 deletions

View File

@ -1,5 +1,11 @@
{ config, ... }: {
{ config, pkgs, ... }:
{
disabledModules = [
"system/services/n8n.nix"
];
nixpkgs.config = {
n8n = pkgs.unstable.n8n;
};
services.n8n = {
enable = true;
openFirewall = true;
@ -9,7 +15,8 @@
};
};
systemd.services.n8n.environment = {
BILLBEE_API_KEY = config.age.secrets.billbee-api-key.path; # TODO env file for systemd service
BILLBEE_API_KEY =
config.age.secrets.billbee-api-key.path; # TODO env file for systemd service
};
systemd.services.traefik.serviceConfig = {
EnvironmentFile = "${config.age.secrets.traefik-env.path}";

Binary file not shown.