Skip to content

Commit

Permalink
Merge master into staging-next
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 3, 2024
2 parents b7b46e4 + eadea83 commit 9b619f2
Show file tree
Hide file tree
Showing 67 changed files with 2,013 additions and 1,283 deletions.
2 changes: 2 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Fabian Affolter <[email protected]> <[email protected]>
goatastronaut0212 <[email protected]> <[email protected]>
Janne Heß <[email protected]> <[email protected]>
Jörg Thalheim <[email protected]> <[email protected]>
Lin Jian <[email protected]> <[email protected]>
Lin Jian <[email protected]> <[email protected]>
Martin Weinelt <[email protected]> <[email protected]>
R. RyanTM <[email protected]>
Robert Hensing <[email protected]> <[email protected]>
Expand Down
19 changes: 18 additions & 1 deletion maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4279,7 +4279,7 @@
keys = [ { fingerprint = "2017 E152 BB81 5C16 955C E612 45BC C1E2 709B 1788"; } ];
};
Cryolitia = {
name = "Beiyan Cryolitia";
name = "Cryolitia PukNgae";
email = "[email protected]";
github = "Cryolitia";
githubId = 23723294;
Expand Down Expand Up @@ -15249,6 +15249,12 @@
github = "o0th";
githubId = 22490354;
};
oakenshield = {
email = "[email protected]";
github = "HritwikSinghal";
githubId = 29531474;
name = "Hritwik Singhal";
};
oaksoaj = {
email = "[email protected]";
name = "Oaksoaj";
Expand Down Expand Up @@ -20383,6 +20389,11 @@
githubId = 156964;
name = "Thomas Boerger";
};
tbwanderer = {
github = "tbwanderer";
githubId = 125365236;
name = "Ice Layer";
};
tcbravo = {
email = "[email protected]";
github = "tcbravo";
Expand Down Expand Up @@ -22600,6 +22611,12 @@
githubId = 529003;
name = "Christine Dodrill";
};
xeals = {
email = "[email protected]";
github = "xeals";
githubId = 21125058;
name = "xeals";
};
xeji = {
email = "[email protected]";
github = "xeji";
Expand Down
1 change: 1 addition & 0 deletions maintainers/scripts/luarocks-packages.csv
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ lpeglabel,,,,1.6.0,,
lrexlib-gnu,,,,,,
lrexlib-pcre,,,,,,vyp
lrexlib-posix,,,,,,
lsp-progress.nvim,,,,,,gepbird
lua-cjson,,,,,,
lua-cmsgpack,,,,,,
lua-curl,,,,,,
Expand Down
6 changes: 6 additions & 0 deletions nixos/doc/manual/release-notes/rl-2411.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,12 @@
for `stateVersion` ≥ 24.11. (It was previously using SQLite for structured
data and the filesystem for blobs).

- The `stargazer` service has been hardened to improve security, but these
changes make break certain setups, particularly around traditional CGI.

- The `stargazer.allowCgiUser` option has been added, enabling
Stargazer's `cgi-user` option to work, which was previously broken.

- The `shiori` service now requires an HTTP secret value `SHIORI_HTTP_SECRET_KEY` to be provided via environment variable. The nixos module therefore, now provides an environmentFile option:

```
Expand Down
10 changes: 5 additions & 5 deletions nixos/modules/profiles/installation-device.nix
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,13 @@ with lib;
nix.settings.trusted-users = [ "nixos" ];

# Install less voices for speechd to save some space
services.speechd.package = pkgs.speechd.override {
mbrola = pkgs.mbrola.override {
mbrola-voices = pkgs.mbrola-voices.override {
nixpkgs.overlays = [
(_: prev: {
mbrola-voices = prev.mbrola-voices.override {
# only ship with one voice per language
languages = [ "*1" ];
};
};
};
})
];
};
}
2 changes: 1 addition & 1 deletion nixos/modules/services/cluster/kubernetes/addons/dns.nix
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ in {
};
};

services.kubernetes.kubelet.clusterDns = mkDefault cfg.clusterIp;
services.kubernetes.kubelet.clusterDns = mkDefault [ cfg.clusterIp ];
};

meta.buildDocsInSandbox = false;
Expand Down
1 change: 1 addition & 0 deletions nixos/modules/services/misc/prowlarr.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ in
ExecStart = "${lib.getExe cfg.package} -nobrowser -data=/var/lib/prowlarr";
Restart = "on-failure";
};
environment.HOME = "/var/empty";
};

networking.firewall = mkIf cfg.openFirewall {
Expand Down
Loading

0 comments on commit 9b619f2

Please sign in to comment.