1
0
Fork 0
mirror of https://github.com/NixOS/nixos-artwork synced 2024-10-18 00:06:24 -04:00

default.nix: Add bootloader output

Co-authored-by: Cosima Neidahl <opna2608@protonmail.com>
This commit is contained in:
Samuel Dionne-Riel 2024-04-08 20:42:35 -04:00
parent afdb9fb257
commit 31e6d5e924

View file

@ -1,6 +1,19 @@
{ pkgs ? import <nixpkgs> {} }:
{
bootloader = pkgs.callPackage (
{ stdenv
, lib
, grub2_efi
}:
stdenv.mkDerivation {
name = "nixos-grub-installer-theme";
srcs = lib.cleanSource ./.;
sourceRoot = "source/bootloader";
nativeBuildInputs = [ grub2_efi ];
makeFlags = [ "prefix=$(out)" ];
}
) {};
icons = pkgs.callPackage (
{ stdenv
, lib