Unverified Commit 02a21c89 authored by github-actions[bot]'s avatar github-actions[bot] Committed by GitHub
Browse files

Merge staging-next into staging

parents 0cc63490 cfc75eec
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -15043,6 +15043,12 @@
    githubId = 496447;
    name = "Robert Hensing";
  };
  robert-manchester = {
    email = "robert.manchester@gmail.com";
    github = "robert-manchester";
    githubId = 86313040;
    name = "Robert Manchester";
  };
  robertodr = {
    email = "roberto.diremigio@gmail.com";
    github = "robertodr";
+4 −1
Original line number Diff line number Diff line
@@ -786,8 +786,11 @@ def update_plugins(editor: Editor, args):
    autocommit = not args.no_commit

    if autocommit:
        from datetime import date
        editor.nixpkgs_repo = git.Repo(editor.root, search_parent_directories=True)
        commit(editor.nixpkgs_repo, f"{editor.attr_path}: update", [args.outfile])
        updated = date.today().strftime('%m-%d-%Y')

        commit(editor.nixpkgs_repo, f"{editor.attr_path}: updated the {updated}", [args.outfile])

    if redirects:
        update()
+4 −0
Original line number Diff line number Diff line
@@ -44,6 +44,10 @@ of actions is always the same:
- Inspect what changed during these actions and print units that failed and
  that were newly started

By default, some units are filtered from the outputs to make it less spammy.
This can be disabled for development or testing by setting the environment variable
`STC_DISPLAY_ALL_UNITS=1`

Most of these actions are either self-explaining but some of them have to do
with our units or the activation script. For this reason, these topics are
explained in the next sections.
+2 −0
Original line number Diff line number Diff line
@@ -359,6 +359,8 @@

- The application firewall `opensnitch` now uses the process monitor method eBPF as default as recommended by upstream. The method can be changed with the setting [services.opensnitch.settings.ProcMonitorMethod](#opt-services.opensnitch.settings.ProcMonitorMethod).

- `services.hedgedoc` has been heavily refactored, reducing the amount of declared options in the module. Most of the options should still work without any changes. Some options have been deprecated, as they no longer have any effect. See [#244941](https://github.com/NixOS/nixpkgs/pull/244941) for more details.

- The module [services.ankisyncd](#opt-services.ankisyncd.package) has been switched to [anki-sync-server-rs](https://github.com/ankicommunity/anki-sync-server-rs) from the old python version, which was difficult to update, had not been updated in a while, and did not support recent versions of anki.
Unfortunately all servers supporting new clients (newer version of anki-sync-server, anki's built in sync server and this new rust package) do not support the older sync protocol that was used in the old server, so such old clients will also need updating and in particular the anki package in nixpkgs is also being updated in this release.
The module update takes care of the new config syntax and the data itself (user login and cards) are compatible, so users of the module will be able to just log in again after updating both client and server without any extra action.
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ let
in
{
  options.networking.iproute2 = {
    enable = mkEnableOption (lib.mdDoc "copy IP route configuration files");
    enable = mkEnableOption (lib.mdDoc "copying IP route configuration files");
    rttablesExtraConfig = mkOption {
      type = types.lines;
      default = "";
Loading