move to mkModuleTree for host configuration
This commit is contained in:
parent
b454514085
commit
3c4bf8040c
13 changed files with 42 additions and 31 deletions
16
modules/system/boot/module.nix
Normal file
16
modules/system/boot/module.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{pkgs, ...}: {
|
||||
boot.loader = {
|
||||
efi.canTouchEfiVariables = true;
|
||||
grub = {
|
||||
enable = true;
|
||||
efiSupport = true;
|
||||
device = "nodev";
|
||||
};
|
||||
};
|
||||
boot.plymouth = {
|
||||
enable = true;
|
||||
# font = "${pkgs.jetbrains-mono}/share/fonts/truetype/JetBrainsMono-Regular.ttf";
|
||||
themePackages = [pkgs.catppuccin-plymouth];
|
||||
theme = "catppuccin-macchiato";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue