Unverified Commit c68f780a authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

chore: move meta option to top level in many modules (#383471)

parents 651302ce e0d1b49a
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -369,11 +369,10 @@ in
          ;
        inherit fileSystems definitionsDirectory mkfsEnv;
      };
  };

  meta.maintainers = with lib.maintainers; [
    nikstur
    willibutz
  ];

  };
}
+2 −2
Original line number Diff line number Diff line
@@ -140,7 +140,7 @@ in
    systemd.slices.isolate = {
      description = "Isolate Sandbox Slice";
    };
  };

  meta.maintainers = with maintainers; [ virchau13 ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -121,7 +121,5 @@ in
      sshAgentAuth = true;
      usshAuth = true;
    };

    meta.maintainers = [ ];
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ in
    networking.firewall = lib.mkIf cfg.openFirewall {
      allowedTCPPorts = [ cfg.port ];
    };
  };

  meta.maintainers = [ lib.maintainers.cafkafk ];
  };
}
+5 −5
Original line number Diff line number Diff line
@@ -180,12 +180,12 @@ in
    };
  };

  config = mkIf cfg.enable {
  meta.maintainers = with lib.maintainers; [
    thoughtpolice
    vifino
  ];

  config = mkIf cfg.enable {
    environment.systemPackages = [ chronyPkg ];

    users.groups.chrony.gid = config.ids.gids.chrony;
Loading