Unverified Commit 5428c134 authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

Merge staging-next into staging

parents 99a61065 b5c0ec92
Loading
Loading
Loading
Loading
+8 −50
Original line number Diff line number Diff line
@@ -2203,12 +2203,6 @@
    githubId = 4679721;
    name = "Artur Cygan";
  };
  artuuge = {
    email = "artuuge@gmail.com";
    github = "artuuge";
    githubId = 10285250;
    name = "Artur E. Ruuge";
  };
  arunoruto = {
    email = "mirza.arnaut45@gmail.com";
    github = "arunoruto";
@@ -2703,6 +2697,14 @@
    githubId = 426541;
    name = "Tim Kleinschmidt";
  };
  azey7f = {
    email = "me@azey.net";
    github = "azey7f";
    githubId = 41077433;
    name = "azey";
    # assuming my nameservers are up: gpg --auto-key-locate clear,nodefault,cert,dane --locate-keys me@azey.net
    keys = [ { fingerprint = "2CCB 3403 43FE 8A2B 91CE  7F75 F94F 4A71 C5C2 1E8F"; } ];
  };
  azuwis = {
    email = "azuwis@gmail.com";
    github = "azuwis";
@@ -3198,12 +3200,6 @@
    githubId = 442623;
    name = "Ben Pye";
  };
  benwbooth = {
    email = "benwboooth@gmail.com";
    github = "benwbooth";
    githubId = 75972;
    name = "Ben Booth";
  };
  benwis = {
    name = "Ben Wishovich";
    email = "ben@benw.is";
@@ -6839,12 +6835,6 @@
    githubId = 349909;
    name = "David Percy";
  };
  dpflug = {
    email = "david@pflug.email";
    github = "dpflug";
    githubId = 108501;
    name = "David Pflug";
  };
  dr460nf1r3 = {
    email = "root@dr460nf1r3.org";
    github = "dr460nf1r3";
@@ -15462,12 +15452,6 @@
    name = "madonius";
    matrix = "@madonius:entropia.de";
  };
  Madouura = {
    email = "madouura@gmail.com";
    github = "Madouura";
    githubId = 93990818;
    name = "Madoura";
  };
  maeve = {
    email = "mrey@mailbox.org";
    matrix = "@maeve:catgirl.cloud";
@@ -22254,18 +22238,6 @@
    githubId = 1217934;
    name = "José Romildo Malaquias";
  };
  romner-set = {
    email = "admin@cynosure.red";
    github = "romner-set";
    githubId = 41077433;
    name = "romner-set";
    keys = [
      {
        # uploaded to https://keys.openpgp.org
        fingerprint = "4B75 244B 0279 9598 FF3B  C21F 95FC 58F1 8CFD FAB0";
      }
    ];
  };
  ronanmacf = {
    email = "macfhlar@tcd.ie";
    github = "RonanMacF";
@@ -25978,12 +25950,6 @@
    name = "Chinmay D. Pai";
    keys = [ { fingerprint = "7F3E EEAA EE66 93CC 8782  042A 7550 7BE2 56F4 0CED"; } ];
  };
  thyol = {
    name = "thyol";
    email = "thyol@pm.me";
    github = "thyol";
    githubId = 81481634;
  };
  tiagolobocastro = {
    email = "tiagolobocastro@gmail.com";
    github = "tiagolobocastro";
@@ -28654,14 +28620,6 @@
    githubId = 37774475;
    name = "Yusuf Duran";
  };
  yuu = {
    email = "yuunix@grrlz.net";
    matrix = "@yuu:matrix.org";
    github = "yuuyins";
    githubId = 86538850;
    name = "Yuu Yin";
    keys = [ { fingerprint = "9F19 3AE8 AA25 647F FC31  46B5 416F 303B 43C2 0AC3"; } ];
  };
  yvan-sraka = {
    email = "yvan@sraka.xyz";
    github = "yvan-sraka";
+3 −1
Original line number Diff line number Diff line
@@ -133,5 +133,7 @@ with lib;
    ] "Zeronet will log by default in /var/lib/zeronet")
  ];

  meta.maintainers = with maintainers; [ Madouura ];
  meta = {
    inherit (pkgs.zeronet) maintainers;
  };
}
+3 −1
Original line number Diff line number Diff line
@@ -256,7 +256,9 @@ in
        LockPersonality = true;
        MemoryDenyWriteExecute = true;

        ProcSubset = "pid";
        # Meilisearch needs to determine cgroup memory limits to set its own memory limits.
        # This means this can't be set to "pid"
        ProcSubset = "all";
        ProtectProc = "invisible";

        NoNewPrivileges = true;
+0 −4
Original line number Diff line number Diff line
@@ -242,10 +242,6 @@ in
      # containers cannot reach aardvark-dns otherwise
      networking.firewall.interfaces.${network_interface}.allowedUDPPorts = lib.mkIf dns_enabled [ 53 ];

      virtualisation.podman.extraPackages = [
        pkgs.iptables
      ]
      ++ lib.optional config.networking.nftables.enable pkgs.nftables;
      virtualisation.containers = {
        enable = true; # Enable common /etc/containers configuration
        containersConf.settings = {
+3 −1
Original line number Diff line number Diff line
{ pkgs, ... }:
{
  name = "bcachefs";
  meta.maintainers = with pkgs.lib.maintainers; [ Madouura ];
  meta = {
    inherit (pkgs.bcachefs-tools.meta) maintainers;
  };

  nodes.machine =
    { pkgs, ... }:
Loading