32 lines
613 B
Nix
32 lines
613 B
Nix
{ lib, pkgs, ... }: {
|
|
environment.systemPackages = [
|
|
pkgs.adi1090x-plymouth-themes
|
|
];
|
|
|
|
boot = {
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
|
|
kernelPackages = pkgs.linuxPackages_xanmod_stable;
|
|
kernelParams = [
|
|
"quiet"
|
|
];
|
|
|
|
extraModprobeConfig = ''
|
|
options bluetooth enable_ecred=1
|
|
'';
|
|
|
|
plymouth = {
|
|
enable = true;
|
|
theme = lib.mkForce "glitch";
|
|
themePackages = [
|
|
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "glitch" ]; })
|
|
];
|
|
};
|
|
consoleLogLevel = 0;
|
|
};
|
|
}
|
|
|