create specialisation for lts kernel

This commit is contained in:
Adithya 2023-11-04 15:09:06 +05:30
parent 676622b793
commit 4abcec536f
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
2 changed files with 10 additions and 0 deletions

View file

@ -9,6 +9,7 @@
./rollback.nix ./rollback.nix
./secureboot.nix ./secureboot.nix
./security.nix ./security.nix
./specialisation.nix
./virtualisation.nix ./virtualisation.nix
]; ];

View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
specialisation = {
linux_lts = {
configuration = {
boot.kernelPackages = pkgs.linuxPackages;
};
};
};
}