generated from andy/linux-nixos-hyprland-config-dotfiles
21 lines
594 B
Nix
21 lines
594 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Bootloader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.loader.timeout = 2;
|
|
boot.initrd.enable = true;
|
|
boot.initrd.verbose = false;
|
|
boot.initrd.systemd.enable = true;
|
|
boot.initrd.availableKernelModules = [ "i915" ];
|
|
boot.initrd.kernelModules = [ "i915" ];
|
|
boot.consoleLogLevel = 3;
|
|
boot.plymouth = {
|
|
enable = true;
|
|
font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
|
|
themePackages = [ pkgs.catppuccin-plymouth ];
|
|
theme = "catppuccin-macchiato";
|
|
};
|
|
}
|