1
0
Fork 0

fix(all): nixfmt

This commit is contained in:
Philipp 2025-05-31 17:57:35 +02:00
parent f86394d5a2
commit 6eeb49f93c
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750
3 changed files with 7 additions and 7 deletions

View file

@ -10,13 +10,12 @@ with lib.${namespace};
let
cfg = config.${namespace}.services.ente-auth;
enteApp =
cfg.package.override {
extraBuildEnv = {
NEXT_PUBLIC_ENTE_ENDPOINT = "https://ente-api.monapona.dev";
NEXT_TELEMETRY_DISABLED = "1";
};
enteApp = cfg.package.override {
extraBuildEnv = {
NEXT_PUBLIC_ENTE_ENDPOINT = "https://ente-api.monapona.dev";
NEXT_TELEMETRY_DISABLED = "1";
};
};
in
{
options.${namespace}.services.ente-auth = {

View file

@ -36,7 +36,7 @@ in
default = "reddit.stahl.sh";
};
};
};
};
config = mkIf cfg.enable {
networking.firewall.allowedTCPPorts = mkIf cfg.nginx.enable [

View file

@ -1,5 +1,6 @@
{
lib,
pkgs,
modulesPath,
namespace,
...