Compare commits

..
4 Commits
Author SHA1 Message Date
msyds 262f6779b1 wip: fix(copypary): zotero webdav
build / build (push) Successful in 1m36s
2026-03-29 19:05:29 -06:00
msyds 9ffa14e536 fix(jellyfin-rpc): systemd unit dependencies
build / build (push) Successful in 2m44s
2026-03-29 19:05:17 -06:00
msyds 8c41e3b8df feat(gitea): set default merge style
build / build (push) Successful in 6s
2026-03-28 14:21:40 -06:00
msyds a9ac5ae964 feat(gitea): 도기 보나와 한국어 2026-03-28 14:21:40 -06:00
2 changed files with 37 additions and 1 deletions
+2
View File
@@ -77,7 +77,9 @@ in {
};
systemd.user.services.jellyfin-rpc = {
Unit.Requires = [ "jellyfin-rpc-configure.service" ];
Unit.After = [ "jellyfin-rpc-configure.service" ];
Install.WantedBy = [ "default.target" ];
Service.ExecStart = lib.getExe pkgs.jellyfin-rpc;
};
+35 -1
View File
@@ -1,6 +1,8 @@
{ config, lib, pkgs, ... }:
let cfg = config.sydnix.deertopia.gitea;
let
cfg = config.sydnix.deertopia.gitea;
commas = lib.concatStringsSep ",";
in {
options.sydnix.deertopia.gitea = {
enable = lib.mkEnableOption "Gitea";
@@ -62,6 +64,38 @@ in {
DISABLE_REGISTRATION = true;
ENABLE_NOTIFY_MAIL = true;
};
"repository.pull-request" = {
CLOSE_KEYWORDS = commas [
# en
"close" "closes" "closed" "fix" "fixes" "fixed" "resolve"
"resolves" "resolved"
# tok
"pini e"
# ko
"해결" "해결합니다" "해결했다"
"종료" "종료합니다" "중료한다" "중료해" "중료하다"
"수정" "수정했습니다" "중료한다" "중료해" "중료하다"
];
REOPEN_KEYWORDS = commas [
# en
"reopen" "reopens" "reopened"
# tok
"open sin e" "pakala sin e"
"li pakala sin" "li pakalan sin"
# ko
"재개" "재개합니다" "다시 열기" "다시 엽니다" "다시 여다"
"다시 연다"
];
WORK_IN_PROGRESS_PREFIXES = commas [
# en
"WIP:" "[WIP]"
# tok
"pini ala:" "awen pali:"
# ko
"공사 중:" "공사중:" "중:" "[중]" "中:" "[中]"
];
DEFAULT_MERGE_STYLE = "rebase";
};
mailer = {
ENABLED = true;
FROM = "Gitea <no-reply@deertopia.net>";