fix: Use nixpkgs 25.05 for building the kernel for the Surface tablets

instead of 25.11
This commit is contained in:
2025-12-04 17:04:53 -05:00
committed by Hunter Halloran
parent 6f3a0ff2bf
commit 53e3de1740
4 changed files with 49 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
nixpkgs-old-kernel.url = "github:NixOS/nixpkgs/nixos-25.05";
home-manager = {
url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
@@ -12,7 +13,7 @@
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
lazyvim-nixvim.url = "github:azuwis/lazyvim-nixvim";
};
outputs = inputs@{ self, nixpkgs, home-manager, disko, lazyvim-nixvim, nixos-hardware,... }: {
outputs = inputs@{ self, nixpkgs, nixpkgs-old-kernel, home-manager, disko, lazyvim-nixvim, nixos-hardware,... }: {
nixosConfigurations = import ./hosts { inherit inputs; };
};
}