Antoine Martin
c7c87fcdb4
The `packages` output from the flake needs flake-utils' `flattenTree` to be valid (because it doesn't support nested sets), but that only works if I use `recurseIntoAttrs`.
8 lines
275 B
Nix
8 lines
275 B
Nix
{ pkgs }:
|
|
{
|
|
sddm-sugar-candy = pkgs.callPackage ./sddm-sugar-candy {};
|
|
kaleidoscope-udev-rules = pkgs.callPackage ./kaleidoscope-udev-rules {};
|
|
grafanaDashboards = pkgs.recurseIntoAttrs (pkgs.callPackage ./grafana-dashboards {});
|
|
spot = pkgs.callPackage ./spot {};
|
|
}
|