dot.nix/modules/global/default.nix
Chris Toph ae77147d86 Migrates common modules to global
- Updates import paths in multiple configurations
2025-05-08 16:49:55 -04:00

9 lines
418 B
Nix

# Add your reusable NixOS modules to this directory, on their own file (https://wiki.nixos.org/wiki/NixOS_modules).
# These are modules you would share with others, not your personal configurations.
{ lib, ... }:
{
# Imports all NixOS modules found in the current directory.
# `lib.custom.scanPaths ./.` scans the current directory (./) for NixOS modules and imports them.
imports = lib.custom.scanPaths ./.;
}