diff options
author | Julian Stecklina <julian.stecklina@cyberus-technology.de> | 2024-10-24 05:26:01 +0200 |
---|---|---|
committer | Julian Stecklina <julian.stecklina@cyberus-technology.de> | 2024-10-24 05:26:01 +0200 |
commit | c0465ce0f926f896f000908559c1ddb089aba148 (patch) | |
tree | df0755d52b287b8a0088d94acfd2cf4d09d232fa | |
parent | dca0d399c0573834d42804c435a934c48b7c92dc (diff) |
Drop obsolete kernel versions
-rw-r--r-- | flake.nix | 58 |
1 files changed, 2 insertions, 56 deletions
@@ -114,7 +114,7 @@ }; devShells = { - default = self.devShells."${system}".linux_6_10; + default = self.devShells."${system}".linux_6_6; # Linux 6.6 linux_6_6 = pkgs.mkShell { @@ -140,60 +140,6 @@ NIX_HARDENING_ENABLE = ""; }; - # Linux 6.8 - linux_6_8 = pkgs.mkShell { - packages = - linuxLlvmDependencies - ++ (linuxRustDependencies "rust_1_74_1") - ++ linuxCommonDependencies; - - # To force LLVM build mode. This should create less problems - # with Rust interop. - LLVM = "1"; - - # Disable all automatically applied hardening. The Linux - # kernel will take care of itself. - NIX_HARDENING_ENABLE = ""; - }; - - linux_6_8_gcc = self.devShells."${system}".linux_6_6_gcc; - - # Linux 6.9 - linux_6_9 = pkgs.mkShell { - packages = - linuxLlvmDependencies - ++ (linuxRustDependencies "rust_1_76_0") - ++ linuxCommonDependencies; - - # To force LLVM build mode. This should create less problems - # with Rust interop. - LLVM = "1"; - - # Disable all automatically applied hardening. The Linux - # kernel will take care of itself. - NIX_HARDENING_ENABLE = ""; - }; - - linux_6_9_gcc = self.devShells."${system}".linux_6_8_gcc; - - # Linux 6.10 - linux_6_10 = pkgs.mkShell { - packages = - linuxLlvmDependencies - ++ (linuxRustDependencies "rust_1_78_0") - ++ linuxCommonDependencies; - - # To force LLVM build mode. This should create less problems - # with Rust interop. - LLVM = "1"; - - # Disable all automatically applied hardening. The Linux - # kernel will take care of itself. - NIX_HARDENING_ENABLE = ""; - }; - - linux_6_10_gcc = self.devShells."${system}".linux_6_9_gcc; - # Linux 6.11 linux_6_11 = pkgs.mkShell { packages = @@ -210,7 +156,7 @@ NIX_HARDENING_ENABLE = ""; }; - linux_6_11_gcc = self.devShells."${system}".linux_6_10_gcc; + linux_6_11_gcc = self.devShells."${system}".linux_6_6_gcc; }; }); } |