mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00
18 lines
461 B
Nix
18 lines
461 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.systemd.enable = true;
|
|
boot.consoleLogLevel = 3;
|
|
boot.plymouth = {
|
|
enable = true;
|
|
font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
|
|
themePackages = [ pkgs.catppuccin-plymouth ];
|
|
theme = "catppuccin-macchiato";
|
|
};
|
|
}
|