Update flake
This commit is contained in:
parent
503c205f6a
commit
7f98328b26
3 changed files with 41 additions and 32 deletions
|
|
@ -5,11 +5,16 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
# Configure boot loader
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
device = "nodev";
|
||||
theme = pkgs.yorha-grub-theme;
|
||||
boot.loader = {
|
||||
grub = let yorha = pkgs.yorha-grub-theme; in {
|
||||
enable = true;
|
||||
device = "nodev";
|
||||
splashImage = "${yorha}/background.png";
|
||||
theme = yorha;
|
||||
};
|
||||
timeout = 3;
|
||||
};
|
||||
|
||||
# Set your time zone.
|
||||
|
|
|
|||
|
|
@ -7,10 +7,14 @@
|
|||
{
|
||||
|
||||
# Configure boot loader
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
device = "nodev";
|
||||
theme = pkgs.yorha-grub-theme;
|
||||
boot.loader = {
|
||||
grub = let yorha = pkgs.yorha-grub-theme; in {
|
||||
enable = true;
|
||||
device = "nodev";
|
||||
splashImage = "${yorha}/background.png";
|
||||
theme = yorha;
|
||||
};
|
||||
timeout = 3;
|
||||
};
|
||||
|
||||
# Set your time zone.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue