nixos-configs/legacyPackages/default.nix
matt1432 20d2fc6b76
All checks were successful
Discord / discord commits (push) Has been skipped
chore(hass): use proper terms for components
2024-09-04 11:53:51 -04:00

17 lines
341 B
Nix

{
inputs,
mkVersion,
pkgs,
...
}: let
inherit (pkgs) lib;
mkScope = file:
lib.recurseIntoAttrs
(pkgs.callPackage file ({inherit mkVersion;} // inputs));
in {
dracula = mkScope ./dracula;
hass-components = mkScope ./hass-components;
firefoxAddons = mkScope ./firefox-addons;
mpvScripts = mkScope ./mpv-scripts;
}