diff --git a/hosts/gerg-desktop/main.nix b/hosts/gerg-desktop/main.nix index 32d6234..3fc3dca 100644 --- a/hosts/gerg-desktop/main.nix +++ b/hosts/gerg-desktop/main.nix @@ -2,7 +2,6 @@ { pkgs, config, - lib, ... }: { @@ -170,10 +169,6 @@ }; }; boot = { - kernelPatches = lib.singleton { - patch = self.packages.clear-patches; - name = "Clear Linux* patchset"; - }; kernelModules = [ "amdgpu" ]; initrd = { availableKernelModules = [ diff --git a/packages/clear-patches/package.nix b/packages/clear-patches/package.nix deleted file mode 100644 index 82ff954..0000000 --- a/packages/clear-patches/package.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ runCommand, fetchFromGitHub }: - -runCommand "kernel-clr-combined.patch" - { - src = fetchFromGitHub { - owner = "clearlinux-pkgs"; - repo = "linux"; - rev = "65f5cc7a18b6eb108e2b458c5c9d244e2aa8b587"; - hash = "sha256-X8H4j7GpMKVdrwSQxbzUVt7m5mzP/53Nx67YG914Zv0="; - }; - } - '' - cd "$src" - grep -o '^%patch[0-9]*' linux.spec \ - | grep -o '[0-9]*' \ - | xargs -I '{}' grep '^Patch{}:' linux.spec \ - | cut -d" " -f2- | xargs cat >> $out - ''