organized some files and modularized

This commit is contained in:
Tyler Mayoff 2025-06-26 23:03:18 -04:00
parent ad9c7413a3
commit 1c9935f11c
4 changed files with 43 additions and 52 deletions

View file

@ -0,0 +1,20 @@
{pkgs, ...}: {
# Bootloader
boot = {
loader = {
timeout = 0;
systemd-boot = {
enable = true;
configurationLimit = 5;
};
efi.canTouchEfiVariables = true;
};
plymouth = {
enable = true;
themePackages = [pkgs.catppuccin-plymouth];
theme = "catppuccin-macchiato";
};
};
}