add default.nix for NUR

This commit is contained in:
Shelvacu
2025-07-12 11:10:21 -07:00
committed by Shelvacu on fw
parent a286aa5d82
commit 7df20fa6dd

6
default.nix Normal file
View File

@@ -0,0 +1,6 @@
# This file exists only for NUR compatibility, the main entry point is flake.nix
{ pkgs }:
let
packagePaths = import ../packages;
in
builtins.mapAttrs (_: path: pkgs.callPackage path { }) packagePaths