Merge pull request #138 from kpy3/master

Fix build errors for nix flake
This commit is contained in:
Adrian Środoń 2024-09-01 15:02:05 +02:00 committed by GitHub
commit 66385f0b07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,4 @@
{ pks, lib, config, ... }:
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.distro-grub-themes;
@ -22,7 +22,7 @@ in
{
boot.loader.grub = {
theme = pkgs.callPackage ./default.nix { theme = cfg.theme; };
splashImage = ./assets/splash_image.jpg;
splashImage = ./../assets/splash_image.jpg;
};
};
}