Creates a standalone data file that can be imported by both aspects/constants.nix and terranix configurations. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
165 B
Nix
7 lines
165 B
Nix
# aspects/server/boot.nix
|
|
{ ... }:
|
|
{
|
|
flake.modules.nixos.server-boot = { config, lib, pkgs, ... }: {
|
|
boot.kernelPackages = pkgs.linuxPackages_hardened;
|
|
};
|
|
}
|