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 Oct 12, 2024
2 parents b415f9c + b418f9b commit 4f2eec3
Show file tree
Hide file tree
Showing 60 changed files with 2,494 additions and 1,765 deletions.
6 changes: 2 additions & 4 deletions ci/request-reviews/request-reviews.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,8 @@ git -C "$tmp/nixpkgs.git" remote add fork https://github.com/"$prRepo".git
git -C "$tmp/nixpkgs.git" config remote.fork.partialclonefilter tree:0
git -C "$tmp/nixpkgs.git" config remote.fork.promisor true

# This should not conflict with any refs in Nixpkgs
headRef=refs/remotes/fork/pr
# Only fetch into a remote ref, because the local ref namespace is used by Nixpkgs, don't want any conflicts
git -C "$tmp/nixpkgs.git" fetch --no-tags fork "$prBranch":"$headRef"
git -C "$tmp/nixpkgs.git" fetch --no-tags fork "$prBranch"
headRef=$(git -C "$tmp/nixpkgs.git" rev-parse refs/remotes/fork/"$prBranch")

log "Checking correctness of the base branch"
if ! "$SCRIPT_DIR"/verify-base-branch.sh "$tmp/nixpkgs.git" "$headRef" "$baseRepo" "$baseBranch" "$prRepo" "$prBranch" | tee "$tmp/invalid-base-error" >&2; then
Expand Down
2 changes: 2 additions & 0 deletions nixos/doc/manual/release-notes/rl-2411.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,8 @@
The derivation now installs "impl" headers selectively instead of by a wildcard.
Use `imgui.src` if you just want to access the unpacked sources.

- The new `boot.loader.systemd-boot.windows` option makes setting up dual-booting with Windows on a different drive easier

- Linux 4.19 has been removed because it will reach its end of life within the lifespan of 24.11

- Unprivileged access to the kernel syslog via `dmesg` is now restricted by default. Users wanting to keep an
Expand Down
2 changes: 1 addition & 1 deletion nixos/modules/programs/gamemode.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

let
cfg = config.programs.gamemode;
settingsFormat = pkgs.formats.ini { };
settingsFormat = pkgs.formats.ini { listsAsDuplicateKeys = true; };
configFile = settingsFormat.generate "gamemode.ini" cfg.settings;
in
{
Expand Down
1 change: 1 addition & 0 deletions nixos/modules/services/web-apps/wakapi.nix
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ in
RestrictNamespaces = true;
RestrictRealtime = true;
RestrictSUIDSGID = true;
StateDirectory = "wakapi";
StateDirectoryMode = "0700";
Restart = "always";
};
Expand Down
Loading

0 comments on commit 4f2eec3

Please sign in to comment.