stable somewhat
analysis.yaml / perform flake analysis (push) Failing after 1m9s
deploy.yaml / build hive configuration (push) Failing after 30s

This commit is contained in:
2026-09-11 14:43:20 +02:00
parent f5e3ef7c5b
commit 95ddd2d8e9
14 changed files with 380 additions and 115 deletions
+22 -2
View File
@@ -1,12 +1,32 @@
{ inputs, pkgs, ... }:
{
inputs,
pkgs,
config,
...
}:
let
unstable = import inputs.unstable { system = pkgs.stdenv.system; };
in
{
users.users.actual = {
isSystemUser = true;
group = config.users.groups.actual.name;
};
users.groups.actual = { };
services.actual = {
package = unstable.actual-server;
enable = true;
openFirewall = true;
settings.port = 3001;
user = config.users.users.actual.name;
settings = {
port = 3001;
openId = {
discoveryURL = "https://auth.shobu.fr";
client_id = "actual-budget";
client_secret._secret = config.age.secrets.actual-client_secret.path;
server_hostname = "https://actual.shobu.fr";
authMethod = "oauth2";
};
};
};
}