10 lines
204 B
Nix
10 lines
204 B
Nix
{ pkgs, ... }: {
|
|
specialisation = {
|
|
linux_lts = {
|
|
configuration = {
|
|
boot.kernelPackages = pkgs.linuxPackages;
|
|
system.nixos.tags = [ "with-lts-kernel" ];
|
|
};
|
|
};
|
|
};
|
|
}
|