feat(gustave): use upstream readeck

This commit is contained in:
Luj 2025-02-02 17:44:03 +01:00
parent 95d72019e1
commit fbe8d060c5
Signed by: luj
GPG key ID: 6FC74C847011FD83
3 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,7 @@
{ config, ... }:
{ config, inputs, ... }:
let
inherit (import inputs.unstable { }) readeck;
in
{
age.secrets."readeck-config".file = ../../secrets/readeck-config.age;
@ -13,6 +16,7 @@
services.readeck = {
enable = true;
configPath = config.age.secrets."readeck-config".path;
package = readeck;
environmentFile = config.age.secrets."readeck-config".path;
};
}