Skip to content

Commit

Permalink
Merge pull request #1113 from flyingcircusio/PL-133043-update-nixpkgs…
Browse files Browse the repository at this point in the history
…-2024-09-23

Update nixpkgs (2024-09-23)
  • Loading branch information
dpausp authored Sep 27, 2024
2 parents add0144 + b747520 commit e5ed327
Show file tree
Hide file tree
Showing 8 changed files with 146 additions and 81 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nixos/platform/kernel.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ in {

boot.kernelPackages = if config.flyingcircus.useVerificationKernel
then pkgs.linuxPackagesFor pkgs.linuxKernelVerify
else pkgs.linuxKernel.packages.linux_5_15;
else pkgs.linuxPackagesFor pkgs.linuxKernelStable;

# Use this spelling if you need to try out custom kernels, try out patches
# or otherwise deviate from our nixpkgs upstream.
Expand Down
18 changes: 18 additions & 0 deletions pkgs/overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,24 @@ builtins.mapAttrs (_: patchPhps phpLogPermissionPatch) {
};
};

linuxKernelStable =
let
kernelPackage = super.linux_5_15;
version = "5.15.164";
in
kernelPackage.override {
argsOverride = {
src = super.fetchurl {
url = "https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-${version}.tar.xz";
hash = "sha256-7GCY+u1kuKR7oXcugSputEQ4X3qjxg0+RzmrL9OykYY=";
};
modDirVersion = version;
inherit version;
};
};



matomo-beta = super.matomo-beta.overrideAttrs (oldAttrs: {
installPhase = ''
runHook preInstall
Expand Down
11 changes: 7 additions & 4 deletions release/important_packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
"gnumake",
"gnupg",
"go",
"go_1_19",
"go_1_20",
"go_1_21",
"go_1_22",
"grafana",
"grub2",
"haproxy",
Expand All @@ -75,7 +75,10 @@
"jre",
"k3s",
"k3s_1_27",
"k3s_1_28",
"k3s_1_29",
"k3s_1_30",
"k3s_1_31",
"keycloak",
"kubernetes-helm",
"libffi",
Expand All @@ -89,7 +92,8 @@
"libxml2",
"libxslt",
"libyaml",
"linux_5_15",
"linuxKernelStable",
"linuxKernelVerify",
"logrotate",
"lz4",
"mailutils",
Expand Down Expand Up @@ -213,7 +217,6 @@
"tomcat10",
"tomcat9",
"unzip",
"unifi7",
"unifi8",
"util-linux",
"varnish",
Expand Down
Loading

0 comments on commit e5ed327

Please sign in to comment.