From 0fb2d50051f89ca70a09b02fb7a4524a96048521 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Sat, 25 Oct 2025 00:44:46 +0100 Subject: [PATCH] boot: Remove pde_set_flags patch since it landed in upstream --- common/boot.nix | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/common/boot.nix b/common/boot.nix index f0f4b92..a5d9155 100644 --- a/common/boot.nix +++ b/common/boot.nix @@ -11,19 +11,6 @@ in efi.canTouchEfiVariables = true; }; - boot.kernelPatches = optionals config.nixpkgs.hostPlatform.isx86 [ - # Fix the /proc/net/tcp seek issue - # Impacts tailscale: https://github.com/tailscale/tailscale/issues/16966 - { - name = "proc: fix missing pde_set_flags() for net proc files"; - patch = pkgs.fetchurl { - name = "fix-missing-pde_set_flags-for-net-proc-files.patch"; - url = "https://patchwork.kernel.org/project/linux-fsdevel/patch/20250821105806.1453833-1-wangzijie1@honor.com/raw/"; - hash = "sha256-DbQ8FiRj65B28zP0xxg6LvW5ocEH8AHOqaRbYZOTDXg="; - }; - } - ]; - services.resolved = { enable = true; fallbackDns = [ ];