about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorkilianar <mail@kilianar.de>2022-09-07 09:42:30 +0200
committerkilianar <mail@kilianar.de>2022-09-07 09:51:45 +0200
commite9b99943ddf422f939dff594cbdd88b9e3f16fd5 (patch)
tree3dec77e3f36d8a1830a84fd02d67f5422b2708c3 /nixos
parentb7612601af7a3435fd65105756d608aaf1075fcf (diff)
downloadnixlib-e9b99943ddf422f939dff594cbdd88b9e3f16fd5.tar
nixlib-e9b99943ddf422f939dff594cbdd88b9e3f16fd5.tar.gz
nixlib-e9b99943ddf422f939dff594cbdd88b9e3f16fd5.tar.bz2
nixlib-e9b99943ddf422f939dff594cbdd88b9e3f16fd5.tar.lz
nixlib-e9b99943ddf422f939dff594cbdd88b9e3f16fd5.tar.xz
nixlib-e9b99943ddf422f939dff594cbdd88b9e3f16fd5.tar.zst
nixlib-e9b99943ddf422f939dff594cbdd88b9e3f16fd5.zip
nixosTests.gitea.*: adapt to option renaming
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/gitea.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/gitea.nix b/nixos/tests/gitea.nix
index 037fc7b31bfa..68a2566c1191 100644
--- a/nixos/tests/gitea.nix
+++ b/nixos/tests/gitea.nix
@@ -18,7 +18,7 @@ let
         services.gitea = {
           enable = true;
           database = { inherit type; };
-          disableRegistration = true;
+          settings.service.DISABLE_REGISTRATION = true;
         };
         environment.systemPackages = [ pkgs.gitea pkgs.jq ];
         services.openssh.enable = true;