nix-dotfiles/hmModules/apps/default.nix

7 lines
144 B
Nix
Raw Normal View History

{ lib, ... }: let
fs = lib.fileset;
appFilter = {name, ...}: name == "app.nix";
in {
imports = fs.toList (fs.fileFilter appFilter ./.);
2024-04-14 05:40:02 -07:00
}