nixos-config/hardware/base.nix
Felix Schröter 93bd508dcc
fix: properly fix failing systemd-vconsole-setup during systemd initrd
Enable `console.earlySetup` as it's required for systemd-vconsole-setup.
2025-05-20 23:03:46 +02:00

20 lines
465 B
Nix

{ lib, pkgs, ... }:
{
imports = [
./firmware.nix
./solokeys.nix
./zsa.nix
];
boot.supportedFilesystems = lib.mkDefault [ "btrfs" ];
boot.kernelPackages = lib.mkOverride 800 pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.systemd.enable = true;
console.earlySetup = true;
services.smartd.enable = true;
services.smartd.notifications.x11.enable = true;
}