Update to NixOS 24.05

This commit is contained in:
2024-07-16 18:05:48 +02:00
parent 3e87eec0eb
commit 8a901e7871
7 changed files with 106 additions and 51 deletions

View File

@@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
# Miniflux configuration
@@ -7,8 +12,7 @@
adminCredentialsFile = config.age.secrets.miniflux.path;
config = {
BASE_URL = "https://rss.coolneng.duckdns.org";
RUN_MIGRATIONS = "1";
DISABLE_HSTS = "1";
DISABLE_HSTS = 1;
};
};
@@ -23,7 +27,7 @@
"pm" = "ondemand";
"pm.max_children " = 4;
"pm.max_requests" = 32;
"env[WALLABAG_DATA]" = "/var/lib/wallabag";
"env[WALLABAG_DATA]" = config.environment.variables.WALLABAG_DATA;
};
phpEnv."PATH" = lib.makeBinPath [ pkgs.php ];
};