core modules have options now

This commit is contained in:
2026-07-05 22:53:04 -05:00
parent 5a12201ce7
commit 9d150a377a
4 changed files with 155 additions and 94 deletions
+9
View File
@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
kernelOptions = {
stable = pkgs.linuxPackages;
lts = pkgs.linuxPackages_lts;
latest = pkgs.linuxPackages_latest;
};
}