mirror of
https://github.com/nmasur/dotfiles
synced 2025-02-12 18:12:03 +00:00
8 lines
178 B
Nix
8 lines
178 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = lib.pipe (lib.filesystem.listFilesRecursive ./.) [
|
|
# Get only files ending in .nix
|
|
(builtins.filter (name: lib.hasSuffix ".nix" name))
|
|
];
|
|
}
|