create specialisation for lts kernel
This commit is contained in:
parent
676622b793
commit
4abcec536f
2 changed files with 10 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
||||||
./rollback.nix
|
./rollback.nix
|
||||||
./secureboot.nix
|
./secureboot.nix
|
||||||
./security.nix
|
./security.nix
|
||||||
|
./specialisation.nix
|
||||||
./virtualisation.nix
|
./virtualisation.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
9
hosts/skipper/specialisation.nix
Normal file
9
hosts/skipper/specialisation.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
specialisation = {
|
||||||
|
linux_lts = {
|
||||||
|
configuration = {
|
||||||
|
boot.kernelPackages = pkgs.linuxPackages;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue