Server-specific NixOS configuration: boot, nix, tailscale Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
274 B
Nix
10 lines
274 B
Nix
# aspects/server/boot.nix
|
|
{ inputs, ... }:
|
|
{
|
|
flake.modules.nixos.server-boot = { config, lib, pkgs, ... }: {
|
|
# Import parent aspect for inheritance
|
|
imports = [ inputs.self.modules.nixos.common-boot ];
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_hardened;
|
|
};
|
|
}
|