Skip to content

Commit 8b94c51

Browse files
Merge master into staging-next
2 parents 8429545 + 1786e50 commit 8b94c51

File tree

52 files changed

+938
-1043
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+938
-1043
lines changed

doc/build-helpers/fetchers.chapter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,8 +505,8 @@ fetchurl {
505505
506506
downloadToTemp = true;
507507
postFetch = ''
508-
${lib.getExe hello} >> $downloadedFile
509-
mv $downloadedFile $out
508+
hello >> "$downloadedFile"
509+
mv "$downloadedFile" "$out"
510510
'';
511511
512512
hash = "sha256-ceooQQYmDx5+0nfg40uU3NNI2yKrixP7HZ/xLZUNv+w=";

doc/release-notes/rl-2511.section.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,6 @@
157157

158158
- Zig 0.12 has been removed.
159159

160-
- `services.forgejo.dump.age` now defaults to `4w`, which deletes dumps older than 4 weeks. This new behaviour could result in older backups being deleted.
161-
162160
- `ansible-later` has been removed because it was discontinued by the author.
163161

164162
- `k3s` airgap images passthru attributes have changed:

maintainers/scripts/update-channel-branches.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -e
33

4-
: ${NIXOS_CHANNELS:=https://nixos.org/channels/}
4+
: ${NIXOS_CHANNELS:=https://channels.nixos.org/}
55
: ${CHANNELS_NAMESPACE:=refs/heads/channels/}
66

77
# List all channels which are currently in the repository which we would

nixos/doc/manual/development/replace-modules.section.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ nixos-unstable unless explicitly configured to do so.
3737
3838
imports = [
3939
# Use postgresql service from nixos-unstable channel.
40-
# sudo nix-channel --add https://nixos.org/channels/nixos-unstable nixos-unstable
40+
# sudo nix-channel --add https://channels.nixos.org/nixos-unstable nixos-unstable
4141
<nixos-unstable/nixos/modules/services/databases/postgresql.nix>
4242
];
4343

nixos/doc/manual/installation/installing-from-other-distro.section.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ The first steps to all these are the same:
3535

3636
```ShellSession
3737
$ nix-channel --list
38-
nixpkgs https://nixos.org/channels/nixpkgs-unstable
38+
nixpkgs https://channels.nixos.org/nixpkgs-unstable
3939
```
4040

4141
As that channel gets released without running the NixOS tests, it
4242
will be safer to use the `nixos-*` channels instead:
4343

4444
```ShellSession
45-
$ nix-channel --add https://nixos.org/channels/nixos-<version> nixpkgs
45+
$ nix-channel --add https://channels.nixos.org/nixos-<version> nixpkgs
4646
```
4747

4848
Where `<version>` corresponds to the latest version available on [channels.nixos.org](https://channels.nixos.org/).

nixos/doc/manual/release-notes/rl-1809.section.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Notable changes and additions for 18.09 include:
3939
For example
4040

4141
```ShellSession
42-
$ nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgsunstable
42+
$ nix-channel --add https://channels.nixos.org/nixpkgs-unstable nixpkgsunstable
4343
$ nix-channel --update
4444
$ nix-build '<nixpkgsunstable>' -A gitFull
4545
$ nix run -f '<nixpkgsunstable>' gitFull

nixos/doc/manual/release-notes/rl-2511.section.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,8 @@
242242
- The non-LTS Forgejo package (`forgejo`) has been updated to 12.0.0. This release contains breaking changes, see the [release blog post](https://forgejo.org/2025-07-release-v12-0/)
243243
for all the details and how to ensure smooth upgrades.
244244

245+
- `services.forgejo.dump.age` now defaults to `4w`, which deletes dumps older than 4 weeks. This new behaviour could result in older backups being deleted.
246+
245247
- `sing-box` has been updated to 1.12.3, which includes a number of breaking changes, old configurations may need updating or they will cause the tool to fail to run.
246248
See the [change log](https://sing-box.sagernet.org/changelog/#1123) for details and [migration](https://sing-box.sagernet.org/migration/#1120) for how to update old configurations.
247249

nixos/modules/services/continuous-integration/gitlab-runner.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ in
318318
319319
''${pkgs.nix}/bin/nix-env -i ''${concatStringsSep " " (with pkgs; [ nix cacert git openssh ])}
320320
321-
''${pkgs.nix}/bin/nix-channel --add https://nixos.org/channels/nixpkgs-unstable
321+
''${pkgs.nix}/bin/nix-channel --add https://channels.nixos.org/nixpkgs-unstable
322322
''${pkgs.nix}/bin/nix-channel --update nixpkgs
323323
''';
324324
environmentVariables = {

nixos/modules/services/web-apps/code-server.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,9 @@ in
232232
+ lib.optionalString (cfg.socket != null) ''
233233
--socket=${cfg.socket} \
234234
''
235+
+ lib.optionalString (cfg.socketMode != null) ''
236+
--socket-mode=${cfg.socketMode} \
237+
''
235238
+ lib.optionalString (cfg.userDataDir != null) ''
236239
--user-data-dir=${cfg.userDataDir} \
237240
''

nixos/modules/services/x11/display-managers/lightdm.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ in
156156
};
157157

158158
background = mkOption {
159-
type = types.either types.path (types.strMatching "^#[0-9]{6}$");
159+
type = types.either types.path (types.strMatching "^#[0-9A-Fa-f]{6}$");
160160
# Manual cannot depend on packages, we are actually setting the default in config below.
161161
defaultText = literalExpression "pkgs.nixos-artwork.wallpapers.simple-dark-gray-bottom.gnomeFilePath";
162162
description = ''

0 commit comments

Comments
 (0)