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

Merge master into staging-next

parents b9f10d0e c8cd6529
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -17121,6 +17121,15 @@
    githubId = 178904;
    name = "Daniel Ehlers";
  };
  sascha8a = {
    email = "sascha@localhost.systems";
    github = "sascha8a";
    githubId = 6937965;
    name = "Alexander Lampalzer";
    keys = [{
      fingerprint = "0350 3136 E22C C561 30E3 A4AE 2087 9CCA CD5C D670";
    }];
  };
  saschagrunert = {
    email = "mail@saschagrunert.de";
    github = "saschagrunert";
+1 −0
Original line number Diff line number Diff line
@@ -150,6 +150,7 @@ Or if you have an older card, you may have to use one of the legacy
drivers:

```nix
services.xserver.videoDrivers = [ "nvidiaLegacy470" ];
services.xserver.videoDrivers = [ "nvidiaLegacy390" ];
services.xserver.videoDrivers = [ "nvidiaLegacy340" ];
services.xserver.videoDrivers = [ "nvidiaLegacy304" ];
+5 −0
Original line number Diff line number Diff line
@@ -129,6 +129,11 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
  [v0.31](https://github.com/derailed/k9s/releases/tag/v0.31.0) for details. It is recommended
  to back up your current configuration and let k9s recreate the new base configuration.

- The option `services.postgresql.ensureUsers._.ensurePermissions` has been removed as it's
  not declarative and is broken with newer postgresql versions. Consider using
  [](#opt-services.postgresql.ensureUsers._.ensureDBOwnership)
  instead or a tool that's more suited for managing the data inside a postgresql database.

- `idris2` was updated to v0.7.0. This version introduces breaking changes. Check out the [changelog](https://github.com/idris-lang/Idris2/blob/v0.7.0/CHANGELOG.md#v070) for details.

- `neo4j` has been updated to 5, you may want to read the [release notes for Neo4j 5](https://neo4j.com/release-notes/database/neo4j-5/)
+1 −0
Original line number Diff line number Diff line
@@ -783,6 +783,7 @@
  ./services/misc/svnserve.nix
  ./services/misc/synergy.nix
  ./services/misc/sysprof.nix
  ./services/misc/tabby.nix
  ./services/misc/tandoor-recipes.nix
  ./services/misc/taskserver
  ./services/misc/tautulli.nix
+1 −1
Original line number Diff line number Diff line
@@ -134,7 +134,7 @@ in
    localSourceAllow = mkOption {
      type = types.listOf types.str;
      # Permissions snapshot and destroy are in case --no-sync-snap is not used
      default = [ "bookmark" "hold" "send" "snapshot" "destroy" ];
      default = [ "bookmark" "hold" "send" "snapshot" "destroy" "mount" ];
      description = lib.mdDoc ''
        Permissions granted for the {option}`services.syncoid.user` user
        for local source datasets. See
Loading