Auto-commit: 2026-01-05 18:28:04

This commit is contained in:
2026-01-05 18:28:04 +00:00
parent b3180e3517
commit 79f39be5fb
13 changed files with 0 additions and 0 deletions

View File

@@ -1,20 +0,0 @@
{ lib, ... }:
let
b = builtins;
module_files =
b.readDir ./. |>
lib.filterAttrs (name: type:
( (lib.strings.hasSuffix ".nix" name
&& name != "default.nix"
&& type == "regular" )
|| ( type == "directory"
&& b.pathExists ./${name}/default.nix))
) |>
b.attrNames |>
b.map (f: ./${f});
in
{
imports = module_files;
nixpkgs.config.allowUnfree = true;
}