Skip to content

Commit

Permalink
use pkgs.linuxPackages_testing
Browse files Browse the repository at this point in the history
  • Loading branch information
misuzu committed Sep 13, 2024
1 parent a140039 commit 3d853d2
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 82 deletions.
2 changes: 1 addition & 1 deletion configuration.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_vf2;
boot.kernelPackages = pkgs.linuxPackages_testing;
boot.kernelParams = [
"console=tty0"
"console=ttyS0,115200"
Expand Down
12 changes: 0 additions & 12 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@
inputs.nixpkgs-native.url = "github:NickCao/nixpkgs/riscv";

outputs = inputs: {
overlays.default = self: super: {
linuxPackages_vf2 = self.linuxPackagesFor (self.callPackage ./linux-vf2.nix {
kernelPatches = [ ];
});
};

overlays.native-fixes = self: super: {
cryptsetup = super.cryptsetup.overrideAttrs (old: {
doCheck = false;
Expand Down Expand Up @@ -159,7 +153,6 @@
modules = [
({ lib, config, pkgs, modulesPath, ... }: {
nixpkgs = {
overlays = [ inputs.self.overlays.default ];
localSystem.config = "x86_64-linux";
crossSystem.config = "riscv64-linux";
};
Expand All @@ -173,7 +166,6 @@
modules = [
({ lib, config, pkgs, modulesPath, ... }: {
nixpkgs = {
overlays = [ inputs.self.overlays.default ];
localSystem.config = "x86_64-linux";
crossSystem.config = "riscv64-linux";
};
Expand All @@ -188,7 +180,6 @@
modules = [
({ lib, config, pkgs, modulesPath, ... }: {
nixpkgs = {
overlays = [ inputs.self.overlays.default ];
localSystem.config = "x86_64-linux";
crossSystem.config = "riscv64-linux";
};
Expand All @@ -204,7 +195,6 @@
({ lib, config, pkgs, modulesPath, ... }: {
nixpkgs = {
overlays = [
inputs.self.overlays.default
inputs.self.overlays.native-fixes
];
};
Expand All @@ -219,7 +209,6 @@
({ lib, config, pkgs, modulesPath, ... }: {
nixpkgs = {
overlays = [
inputs.self.overlays.default
inputs.self.overlays.native-fixes
];
};
Expand All @@ -235,7 +224,6 @@
({ lib, config, pkgs, modulesPath, ... }: {
nixpkgs = {
overlays = [
inputs.self.overlays.default
inputs.self.overlays.native-fixes
];
};
Expand Down
69 changes: 0 additions & 69 deletions linux-vf2.nix

This file was deleted.

0 comments on commit 3d853d2

Please sign in to comment.