summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-10-01 19:52:35 +0200
committerGitHub <noreply@github.com>2021-10-01 19:52:35 +0200
commit5d53e38d24fa8db1ad684cd7bd1d6e4ef1756ab1 (patch)
tree8fb5f85a56af723072fe797b6369230a826cf2cd /nixos/modules
parent378d2c5dcec7fef958cca3760448c09a9be2b7a3 (diff)
downloadnixpkgs-5d53e38d24fa8db1ad684cd7bd1d6e4ef1756ab1.tar
nixpkgs-5d53e38d24fa8db1ad684cd7bd1d6e4ef1756ab1.tar.gz
nixpkgs-5d53e38d24fa8db1ad684cd7bd1d6e4ef1756ab1.tar.bz2
nixpkgs-5d53e38d24fa8db1ad684cd7bd1d6e4ef1756ab1.tar.lz
nixpkgs-5d53e38d24fa8db1ad684cd7bd1d6e4ef1756ab1.tar.xz
nixpkgs-5d53e38d24fa8db1ad684cd7bd1d6e4ef1756ab1.tar.zst
nixpkgs-5d53e38d24fa8db1ad684cd7bd1d6e4ef1756ab1.zip
nixos/gitea: switch default log level to Info
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/misc/gitea.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/gitea.nix b/nixos/modules/services/misc/gitea.nix
index 8322b7c0902..753cb870e7d 100644
--- a/nixos/modules/services/misc/gitea.nix
+++ b/nixos/modules/services/misc/gitea.nix
@@ -55,7 +55,7 @@ in
           description = "Root path for log files.";
         };
         level = mkOption {
-          default = "Trace";
+          default = "Info";
           type = types.enum [ "Trace" "Debug" "Info" "Warn" "Error" "Critical" ];
           description = "General log level.";
         };