summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/hedgedoc.nix
diff options
context:
space:
mode:
authorLuke Granger-Brown <git@lukegb.com>2021-01-10 00:12:07 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-02-12 14:12:48 -0800
commitcfed3b8b226dfd103f1942c55ffa664178832c29 (patch)
tree497771b6c8655c6bee77e77533e7f07ec4ce64dc /nixos/modules/services/web-apps/hedgedoc.nix
parent6964689aff0e97424e594a52bf90673576ee8878 (diff)
downloadnixpkgs-cfed3b8b226dfd103f1942c55ffa664178832c29.tar
nixpkgs-cfed3b8b226dfd103f1942c55ffa664178832c29.tar.gz
nixpkgs-cfed3b8b226dfd103f1942c55ffa664178832c29.tar.bz2
nixpkgs-cfed3b8b226dfd103f1942c55ffa664178832c29.tar.lz
nixpkgs-cfed3b8b226dfd103f1942c55ffa664178832c29.tar.xz
nixpkgs-cfed3b8b226dfd103f1942c55ffa664178832c29.tar.zst
nixpkgs-cfed3b8b226dfd103f1942c55ffa664178832c29.zip
treewide: update 21.03 to 21.05
The NixOS 21.03 release has been delayed to 21.05. See NixOS/rfcs#80.

There are two instances of 21.03 which have been left as is, since they
are in stateVersion comparisons. This will ensure that existing user
configurations which refer to 21.03 will continue to work.
Diffstat (limited to 'nixos/modules/services/web-apps/hedgedoc.nix')
-rw-r--r--nixos/modules/services/web-apps/hedgedoc.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/modules/services/web-apps/hedgedoc.nix b/nixos/modules/services/web-apps/hedgedoc.nix
index 3f646d7db0c..d940f3d3dae 100644
--- a/nixos/modules/services/web-apps/hedgedoc.nix
+++ b/nixos/modules/services/web-apps/hedgedoc.nix
@@ -5,6 +5,10 @@ with lib;
 let
   cfg = config.services.hedgedoc;
 
+  # 21.03 will not be an official release - it was instead 21.05.  This
+  # versionAtLeast statement remains set to 21.03 for backwards compatibility.
+  # See https://github.com/NixOS/nixpkgs/pull/108899 and
+  # https://github.com/NixOS/rfcs/blob/master/rfcs/0080-nixos-release-schedule.md.
   name = if versionAtLeast config.system.stateVersion "21.03"
     then "hedgedoc"
     else "codimd";