nixos-config/hardware/base.nix
Felix Schröter ae62bb5cb9
Some checks failed
Test / tests (push) Failing after 2m58s
feat(hardware): enable plymouth
2025-06-06 19:33:49 +02:00

25 lines
646 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;
boot.plymouth.enable = true;
# prevents `systemd-vconsole-setup` failing during systemd initrd
console.earlySetup = true;
systemd.services.systemd-vconsole-setup.unitConfig.After = "local-fs.target";
services.smartd.enable = true;
services.smartd.notifications.x11.enable = true;
}