mnt/reform: init

This commit is contained in:
Jakob Leifhelm
2025-06-09 10:22:23 +02:00
parent 170ff93c86
commit 5e57f28e6a
12 changed files with 1346 additions and 0 deletions

10
mnt/reform/default.nix Normal file
View File

@@ -0,0 +1,10 @@
{
config,
lib,
pkgs,
...
}:
{
boot.kernelPackages = pkgs.callPackage ./kernel.nix { };
boot.extraModulePackages = [ (config.boot.kernelPackages.callPackage ./lpc.nix { }) ];
}