nixos-config/lib/builders/default.nix
Gabriel Arazas 1912e21e41
lib/builders: add Hugo site builder
Good timing with the restructure, too. :D
2024-08-29 17:41:42 +08:00

9 lines
326 B
Nix

{ pkgs, lib, self }:
{
makeXDGMimeAssociationList = pkgs.callPackage ./xdg/make-association-list.nix { };
makeXDGPortalConfiguration = pkgs.callPackage ./xdg/make-portal-config.nix { };
makeXDGDesktopEntry = pkgs.callPackage ./xdg/make-desktop-entry.nix { };
buildHugoSite = pkgs.callPackage ./hugo-build-site { };
}