feat: Fix improved-crosshairs and allow customisation of alternatives

This commit is contained in:
Madeleine Sydney
2025-04-17 03:57:16 -06:00
parent 2b3bc04751
commit 36fb39c38b
4 changed files with 47 additions and 15 deletions

View File

@@ -0,0 +1,10 @@
{ lib, ... }:
lib.mapAttrs'
(file: _:
lib.nameValuePair
(lib.removeSuffix ".nix" file)
(import ./${file}))
(lib.filterAttrs
(file: _: lib.hasSuffix ".nix" file && file != "default.nix")
(builtins.readDir ./.))