mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-08 04:44:39 -05:00
15 lines
291 B
Nix
Executable file
15 lines
291 B
Nix
Executable file
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;
|
|
|
|
}
|