nix-dotfiles/hmModules/apps/default.nix

6 lines
144 B
Nix

{ lib, ... }: let
fs = lib.fileset;
appFilter = {name, ...}: name == "app.nix";
in {
imports = fs.toList (fs.fileFilter appFilter ./.);
}