mirror of
https://gitlab.com/upRootNutrition/resume.git
synced 2025-06-16 09:25:11 -05:00
25 lines
434 B
Nix
25 lines
434 B
Nix
![]() |
{
|
||
|
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;
|
||
|
};
|
||
|
}
|