···2222 </listitem>
2323 <listitem>
2424 <para>
2525+ kOps now defaults to 1.21.0, which uses containerd as the
2626+ default runtime.
2727+ </para>
2828+ </listitem>
2929+ <listitem>
3030+ <para>
2531 <literal>python3</literal> now defaults to Python 3.9, updated
2632 from Python 3.8.
2733 </para>
+1
nixos/doc/manual/release-notes/rl-2111.section.md
···77## Highlights {#sec-release-21.11-highlights}
8899- PHP now defaults to PHP 8.0, updated from 7.4.
1010+- kOps now defaults to 1.21.0, which uses containerd as the default runtime.
10111112- `python3` now defaults to Python 3.9, updated from Python 3.8.
1213
···323323 HTTP username
324324 '';
325325 };
326326- password = mkOption {
327327- type = types.str;
328328- description = ''
329329- HTTP password
330330- '';
331331- };
326326+ password = mkOpt types.str "HTTP password";
327327+ password_file = mkOpt types.str "HTTP password file";
332328 };
333329 }) ''
334334- Optional http login credentials for metrics scraping.
330330+ Sets the `Authorization` header on every scrape request with the
331331+ configured username and password.
332332+ password and password_file are mutually exclusive.
335333 '';
336334337335 bearer_token = mkOpt types.str ''
+1
pkgs/applications/editors/neovim/default.nix
···131131 - Improve extensibility with a new plugin architecture
132132 '';
133133 homepage = "https://www.neovim.io";
134134+ mainProgram = "nvim";
134135 # "Contributions committed before b17d96 by authors who did not sign the
135136 # Contributor License Agreement (CLA) remain under the Vim license.
136137 # Contributions committed after b17d96 are licensed under Apache 2.0 unless
-1
pkgs/applications/editors/neovim/wrapper.nix
···131131 hydraPlatforms = [];
132132 # prefer wrapper over the package
133133 priority = (neovim.meta.priority or 0) - 1;
134134- mainProgram = "nvim";
135134 };
136135 };
137136in