chore: quick push

This commit is contained in:
Nick 2025-03-09 19:37:13 -05:00
parent f3ed254c00
commit b936cfeed6
15 changed files with 190 additions and 14 deletions

View file

@ -0,0 +1,24 @@
{
perSystem =
{
pkgs,
lib,
config,
self',
...
}:
let
configPath = ./config;
devshellImports =
let
files = builtins.attrNames (builtins.readDir configPath);
in
map (name: configPath + "/${name}") (
builtins.filter (name: builtins.match ".*\\.nix$" name != null) files
);
in
{
imports = devshellImports;
};
}