mirror of
https://github.com/AdisonCavani/distro-grub-themes.git
synced 2025-06-06 07:12:33 +02:00
Merge pull request #138 from kpy3/master
Fix build errors for nix flake
This commit is contained in:
commit
66385f0b07
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ pks, lib, config, ... }:
|
{ pkgs, lib, config, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.distro-grub-themes;
|
cfg = config.distro-grub-themes;
|
||||||
|
@ -22,7 +22,7 @@ in
|
||||||
{
|
{
|
||||||
boot.loader.grub = {
|
boot.loader.grub = {
|
||||||
theme = pkgs.callPackage ./default.nix { theme = cfg.theme; };
|
theme = pkgs.callPackage ./default.nix { theme = cfg.theme; };
|
||||||
splashImage = ./assets/splash_image.jpg;
|
splashImage = ./../assets/splash_image.jpg;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue