initial commit

This commit is contained in:
2025-05-12 23:25:39 -03:00
parent bf178e3caa
commit dc6f6894e6
95 changed files with 3922 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# Add your reusable host-level modules that are common across both nixos and darwin to this directory, in
# their own file (https://wiki.nixos.org/wiki/NixOS_modules).
# They will automatically be imported below but must be enabled elsewhere in the config, such as in common/core,
# common/optional, or common/hosts files for example.
# These are modules you would share with others, not your personal configurations.
{ lib, ... }:
{
imports = lib.custom.scanPaths ./.;
}

View File

@@ -0,0 +1,9 @@
# Add your reusable nix-darwin modules to this directory, in their own file (https://wiki.nixos.org/wiki/NixOS_modules).
# They will automatically be imported below but must be enabled elsewhere in the config, such as in common/core,
# common/optional, or common/hosts files for example.
# These are modules you would share with others, not your personal configurations.
{ lib, ... }:
{
imports = lib.custom.scanPaths ./.;
}

View File

@@ -0,0 +1,9 @@
# Add your reusable NixOS modules to this directory, in their own file (https://wiki.nixos.org/wiki/NixOS_modules).
# They will automatically be imported below but must be enabled elsewhere in the config, such as in common/core,
# common/optional, or common/hosts files for example.
# These are modules you would share with others, not your personal configurations.
{ lib, ... }:
{
imports = lib.custom.scanPaths ./.;
}