Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ced62b07ba66
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 51b95565a6e3
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 28, 2020

  1. linuxPackages: 4.19 -> 5.4

    It's a longterm version that has been out for quite some time:
    5.4.15 and 5.5 are current.  I've been using it, so far I'm not aware
    of any issues with it.
    
    Feature freeze for the next NixOS release is in two weeks,
    so now seems to be high time to decide the default kernel version.
    https://discourse.nixos.org/t/nixos-20-03-feature-freeze/5655
    vcunat committed Jan 28, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    3aa308a View commit details

Commits on Jan 31, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    bba954f View commit details
  2. Merge pull request #78713 from vcunat/p/linux_5_4-default

    linuxPackages: 4.19 -> 5.4
    worldofpeace authored Jan 31, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    51b9556 View commit details
Showing with 8 additions and 1 deletion.
  1. +7 −0 nixos/doc/manual/release-notes/rl-2003.xml
  2. +1 −1 pkgs/top-level/all-packages.nix
7 changes: 7 additions & 0 deletions nixos/doc/manual/release-notes/rl-2003.xml
Original file line number Diff line number Diff line change
@@ -23,6 +23,13 @@
Support is planned until the end of October 2020, handing over to 20.09.
</para>
</listitem>
<listitem>
<para>
Linux kernel is updated to branch 5.4 by default (from 4.19).
Users of Intel GPUs may prefer to explicitly set branch to 4.19 to avoid some regressions.
<programlisting>boot.kernelPackages = pkgs.linuxPackages_4_19;</programlisting>
</para>
</listitem>
<listitem>
<para>
Postgresql for NixOS service now defaults to v11.
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -16619,7 +16619,7 @@ in
});

# The current default kernel / kernel modules.
linuxPackages = linuxPackages_4_19;
linuxPackages = linuxPackages_5_4;
linux = linuxPackages.kernel;

# Update this when adding the newest kernel major version!