again attempting to fix this hell of a git history

This commit is contained in:
cl0vrfi3ld
2025-06-14 20:12:51 -04:00
parent cfb471a9ce
commit 0afdf018f9
6 changed files with 432 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
{
description = "Flake description";
outputs =
{ self }:
{
nixosModules.default = import ./module.nix;
configPathsNeeded = builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
meta =
{ lib, ... }:
{
spModuleSchemaVersion = 1;
id = "actual";
name = "Actual";
description = "Actual (aka Actual Budget) is a super fast and privacy-focused app for managing your finances.";
svgIcon = builtins.readFile ./icon.svg;
showUrl = true;
primarySubdomain = "subdomain";
isMovable = false;
isRequired = false;
canBeBackedUp = true;
backupDescription = "Your budgets, settings, and account secrets (where applicable).";
systemdServices = [
"actual.service"
];
user = "actual";
group = "actual";
folders = [
"/var/lib/actual"
];
license = [
lib.licenses.mit
];
homepage = "https://actualbudget.org/";
sourcePage = "https://github.com/actualbudget/actual";
# since this module hasn't been thoroughly tested, I'd advertise it as `experimental`, but is also a `community` class module
supportLevel = "experimental";
};
};
}