mnt/reform: init

This commit is contained in:
Jakob Leifhelm 2025-06-09 10:22:23 +02:00
parent 170ff93c86
commit 5e57f28e6a
No known key found for this signature in database
GPG key ID: 6817AA0238100822
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 { }) ];
}