nichts/nyx/hosts/enyo/kernel/default.nix
2024-04-09 23:11:33 +02:00

13 lines
270 B
Nix

{
config,
pkgs,
...
}: let
inherit (config.networking) hostname;
inherit (pkgs.callPackage ./package.nix {inherit hostname;}) xanmod_custom;
in {
imports = [./config];
config = {
modules.system.boot.kernel = pkgs.linuxPackagesFor xanmod_custom;
};
}