elendel: Fix postgres data path
Some checks failed
Cachix / build (lasting-integrity) (push) Waiting to run
Cachix / build (marabethia) (push) Waiting to run
Cachix / build (urithiru) (push) Waiting to run
Cachix / build (elendel) (push) Successful in 1m25s
Cachix / build (kholinar) (push) Has been cancelled

This commit is contained in:
Charlotte Van Petegem 2024-12-04 15:14:19 +01:00
parent eeff843418
commit 660d83d68b

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ config, pkgs, lib, ... }:
{
imports = [ ./hardware.nix ];
@ -73,4 +73,5 @@
torrents.enable = true;
};
};
services.postgresql.dataDir = lib.mkForce "/var/lib/postgresql/${config.services.postgresql.package.psqlSchema}";
}