pin old kernel for tablets

This commit is contained in:
2025-12-04 19:59:50 -05:00
parent a2332a5048
commit 4abc548c83
5 changed files with 47 additions and 20 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; };
};
}