1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

chore: wip: add better options to hostapd module

This commit is contained in:
oddlama 2023-03-19 01:10:37 +01:00
parent 076db4963f
commit 3dd210d5cf
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
4 changed files with 508 additions and 239 deletions

View file

@ -1,5 +1,5 @@
{nixpkgs, ...}:
nixpkgs.lib.concatMapAttrs (nodeName: fileType:
if fileType == "directory"
if fileType == "directory" && nodeName != "common"
then {${nodeName} = import (../hosts + "/${nodeName}/meta.nix");}
else {}) (builtins.readDir ../hosts)