nix-custom/packages/yorha-grub-theme.nix

18 lines
370 B
Nix
Raw Permalink Normal View History

2024-09-15 18:34:27 -07:00
{
inputs,
name,
pkgs,
2025-09-09 22:21:53 -05:00
resolution ? "3840x2160",
2024-09-15 18:34:27 -07:00
}:
assert builtins.any (s: resolution == s) ["1920x1080" "2256x1504" "2560x1440" "3840x2160"];
pkgs.stdenv.mkDerivation {
inherit name;
src = inputs.${name};
installPhase = ''
runHook preInstall
mkdir -p $out/
cp -r yorha-${resolution}/* $out/
runHook postInstall
'';
}