mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
14 lines
463 B
Nix
14 lines
463 B
Nix
# Bahaghari's subproject. We're primarily exporting to use Bahaghari without
|
|
# referring to its flake which is bad since the lockfile will constantly
|
|
# update. Not a good look.
|
|
{ lib, ... }:
|
|
|
|
{
|
|
flake = {
|
|
bahaghariLib = ../../subprojects/bahaghari/lib;
|
|
homeModules.bahaghari = ../../subprojects/bahaghari/modules;
|
|
nixosModules.bahaghari = ../../subprojects/bahaghari/modules;
|
|
nixvimModules.bahaghari = ../../subprojects/bahaghari/modules;
|
|
};
|
|
}
|