summary refs log tree commit diff
path: root/nixos/modules/services/misc/gitea.nix
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2021-12-05 21:28:49 +0100
committerpennae <github@quasiparticle.net>2021-12-09 01:13:48 +0100
commitfb0e5be84331188a69b3edd31679ca6576edb75a (patch)
tree80d713f568ae02e4a3aed70114bafe46e9fe753f /nixos/modules/services/misc/gitea.nix
parentf6d0b014fe1db9e6edec5485f41a1162136c8a70 (diff)
downloadnixpkgs-fb0e5be84331188a69b3edd31679ca6576edb75a.tar
nixpkgs-fb0e5be84331188a69b3edd31679ca6576edb75a.tar.gz
nixpkgs-fb0e5be84331188a69b3edd31679ca6576edb75a.tar.bz2
nixpkgs-fb0e5be84331188a69b3edd31679ca6576edb75a.tar.lz
nixpkgs-fb0e5be84331188a69b3edd31679ca6576edb75a.tar.xz
nixpkgs-fb0e5be84331188a69b3edd31679ca6576edb75a.tar.zst
nixpkgs-fb0e5be84331188a69b3edd31679ca6576edb75a.zip
treewide: add defaultText for options with simple interpolation defaults
adds defaultText for all options that use `cfg.*` values in their
defaults, but only for interpolations with no extra processing (other
than toString where necessary)
Diffstat (limited to 'nixos/modules/services/misc/gitea.nix')
-rw-r--r--nixos/modules/services/misc/gitea.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/gitea.nix b/nixos/modules/services/misc/gitea.nix
index c0f7661c569..938bb28da90 100644
--- a/nixos/modules/services/misc/gitea.nix
+++ b/nixos/modules/services/misc/gitea.nix
@@ -1,9 +1,10 @@
-{ config, lib, pkgs, ... }:
+{ config, lib, options, pkgs, ... }:
 
 with lib;
 
 let
   cfg = config.services.gitea;
+  opt = options.services.gitea;
   gitea = cfg.package;
   pg = config.services.postgresql;
   useMysql = cfg.database.type == "mysql";
@@ -51,6 +52,7 @@ in
       log = {
         rootPath = mkOption {
           default = "${cfg.stateDir}/log";
+          defaultText = literalExpression ''"''${config.${opt.stateDir}}/log"'';
           type = types.str;
           description = "Root path for log files.";
         };
@@ -130,6 +132,7 @@ in
         path = mkOption {
           type = types.str;
           default = "${cfg.stateDir}/data/gitea.db";
+          defaultText = literalExpression ''"''${config.${opt.stateDir}}/data/gitea.db"'';
           description = "Path to the sqlite3 database file.";
         };
 
@@ -166,6 +169,7 @@ in
         backupDir = mkOption {
           type = types.str;
           default = "${cfg.stateDir}/dump";
+          defaultText = literalExpression ''"''${config.${opt.stateDir}}/dump"'';
           description = "Path to the dump files.";
         };
       };
@@ -199,6 +203,7 @@ in
         contentDir = mkOption {
           type = types.str;
           default = "${cfg.stateDir}/data/lfs";
+          defaultText = literalExpression ''"''${config.${opt.stateDir}}/data/lfs"'';
           description = "Where to store LFS files.";
         };
       };
@@ -212,6 +217,7 @@ in
       repositoryRoot = mkOption {
         type = types.str;
         default = "${cfg.stateDir}/repositories";
+        defaultText = literalExpression ''"''${config.${opt.stateDir}}/repositories"'';
         description = "Path to the git repositories.";
       };