test grub

This commit is contained in:
Kopatz
2025-08-17 15:31:17 +02:00
parent 75c1156619
commit 8e9d2c0378
4 changed files with 45 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
{ pkgs }:
pkgs.stdenv.mkDerivation {
name = "hollow-grub-theme";
src = pkgs.fetchFromGitHub {
owner = "sergoncano";
repo = "hollow-knight-grub-theme";
hash = "sha256-SUy2bQIeUWb/UdQip1ZhBTvXSHJ/LaHhpeK9DGQht6w=";
rev = "7cef3a2ea25fc2c7ac66d4c9ec1b6a96ca1fd643";
};
installPhase = ''
mkdir -p $out/grub/theme/
cp -r ./hollow-grub/* $out/grub/theme/
'';
}