summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorasonix <asonix@asonix.dog>2023-05-08 17:28:00 -0500
committerYt <happysalada@tuta.io>2023-05-09 15:24:54 -0400
commitcb2941db79fd0a7f0b97fb831164361efe752b86 (patch)
treee945ff5da0bbfb2179f6ad37373dd2ac6699ceb3 /nixos
parent86bafe1e7f6203f9fbfdf4386237d5355a1364cb (diff)
downloadnixpkgs-cb2941db79fd0a7f0b97fb831164361efe752b86.tar
nixpkgs-cb2941db79fd0a7f0b97fb831164361efe752b86.tar.gz
nixpkgs-cb2941db79fd0a7f0b97fb831164361efe752b86.tar.bz2
nixpkgs-cb2941db79fd0a7f0b97fb831164361efe752b86.tar.lz
nixpkgs-cb2941db79fd0a7f0b97fb831164361efe752b86.tar.xz
nixpkgs-cb2941db79fd0a7f0b97fb831164361efe752b86.tar.zst
nixpkgs-cb2941db79fd0a7f0b97fb831164361efe752b86.zip
pict-rs: 0.3.0-alpha.37 -> 0.3.3
Diffstat (limited to 'nixos')
-rw-r--r--nixos/doc/manual/release-notes/rl-2305.section.md2
-rw-r--r--nixos/modules/services/web-apps/pict-rs.nix4
2 files changed, 4 insertions, 2 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md
index 15ffbc09aff..66af21fe4b9 100644
--- a/nixos/doc/manual/release-notes/rl-2305.section.md
+++ b/nixos/doc/manual/release-notes/rl-2305.section.md
@@ -290,6 +290,8 @@ In addition to numerous new and upgraded packages, this release has the followin
 
 - The `zplug` package changes its output path from `$out` to `$out/share/zplug`. Users should update their dependency on `${pkgs.zplug}/init.zsh` to `${pkgs.zplug}/share/zplug/init.zsh`.
 
+- The `pict-rs` package was updated from an 0.3 alpha release to 0.3 stable, and related environment variables now require two underscores instead of one.
+
 ## Other Notable Changes {#sec-release-23.05-notable-changes}
 
 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
diff --git a/nixos/modules/services/web-apps/pict-rs.nix b/nixos/modules/services/web-apps/pict-rs.nix
index 0f13b2ae6db..3270715a051 100644
--- a/nixos/modules/services/web-apps/pict-rs.nix
+++ b/nixos/modules/services/web-apps/pict-rs.nix
@@ -34,8 +34,8 @@ in
   config = lib.mkIf cfg.enable {
     systemd.services.pict-rs = {
       environment = {
-        PICTRS_PATH = cfg.dataDir;
-        PICTRS_ADDR = "${cfg.address}:${toString cfg.port}";
+        PICTRS__PATH = cfg.dataDir;
+        PICTRS__ADDR = "${cfg.address}:${toString cfg.port}";
       };
       wantedBy = [ "multi-user.target" ];
       serviceConfig = {