nix-config/hosts/desktops/common/boot.nix
2023-02-11 11:52:45 -03:00

20 lines
506 B
Nix

{ specialArgs, inputs, config, pkgs, lib, ... }:
{
boot = {
plymouth.enable = true;
initrd.systemd.enable = true;
supportedFilesystems = [ "ntfs" ];
loader.efi.efiSysMountPoint = "/boot/efi";
kernelPackages = pkgs.linuxPackages_xanmod_latest;
extraModprobeConfig = ''options bluetooth disable_ertm=1'';
kernelParams = [
"quiet"
"splash"
"loglevel=3"
"udev.log_priority=3"
"rd.udev.log_level=3"
"rd.systemd.show_status=false"
];
};
}