n8n to unstable
This commit is contained in:
parent
1736c8dc07
commit
9bee8d26c7
|
@ -1,5 +1,11 @@
|
||||||
{ config, ... }: {
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
disabledModules = [
|
||||||
|
"system/services/n8n.nix"
|
||||||
|
];
|
||||||
|
nixpkgs.config = {
|
||||||
|
n8n = pkgs.unstable.n8n;
|
||||||
|
};
|
||||||
services.n8n = {
|
services.n8n = {
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
|
@ -9,7 +15,8 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
systemd.services.n8n.environment = {
|
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 = {
|
systemd.services.traefik.serviceConfig = {
|
||||||
EnvironmentFile = "${config.age.secrets.traefik-env.path}";
|
EnvironmentFile = "${config.age.secrets.traefik-env.path}";
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue