dotfiles/templates/website/parts/default.nix

15 lines
290 B
Nix
Raw Normal View History

2025-06-26 02:43:48 -05:00
let
configPath = ./config;
2025-06-22 18:31:52 -05:00
2025-06-26 02:43:48 -05:00
devshellImports =
let
files = builtins.attrNames (builtins.readDir configPath);
2025-06-22 18:31:52 -05:00
in
2025-06-26 02:43:48 -05:00
map (name: configPath + "/${name}") (
builtins.filter (name: builtins.match ".*\\.nix$" name != null) files
);
in
{
imports = devshellImports;
2025-06-22 18:31:52 -05:00
}