Compare commits

...

2 commits

Author SHA1 Message Date
50d1bf7564
fix(forgejo): add git user
Some checks failed
Test / tests (push) Failing after 2m52s
2025-07-21 21:28:40 +02:00
196052a5fc
fix(calibre-web): add kobo dependency 2025-07-21 21:27:41 +02:00
2 changed files with 10 additions and 0 deletions

View file

@ -11,6 +11,9 @@ in
services.calibre-web = {
enable = true;
package = pkgs.calibre-web.overridePythonAttrs (old: {
dependencies = old.dependencies ++ old.optional-dependencies.kobo;
});
group = "media";
listen.ip = "::1";
listen.port = port;

View file

@ -55,6 +55,13 @@ in
};
};
users.groups.git = { };
users.users.git = {
isSystemUser = true;
createHome = false;
group = "git";
};
networking.firewall.allowedTCPPorts = [ sshPort ];
services.nginx.virtualHosts.${domain} = {