mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 23:11:34 +01:00
35 lines
675 B
Nix
35 lines
675 B
Nix
{ config, lib, ... }:
|
|
let
|
|
cfg = config.custom.services.actualbudget;
|
|
in
|
|
{
|
|
options.custom.services.actualbudget = {
|
|
enable = lib.mkEnableOption "";
|
|
domain = lib.mkOption {
|
|
type = lib.types.nonEmptyStr;
|
|
default = "";
|
|
};
|
|
port = lib.mkOption {
|
|
type = lib.types.port;
|
|
default = 8888;
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
users = {
|
|
groups.actual = { };
|
|
users.actual = {
|
|
isSystemUser = true;
|
|
group = config.users.groups.actual.name;
|
|
};
|
|
};
|
|
|
|
services.actual = {
|
|
enable = true;
|
|
settings = {
|
|
hostname = "localhost";
|
|
inherit (cfg) port;
|
|
};
|
|
};
|
|
};
|
|
}
|