2024-02-24 02:36:28 +00:00
|
|
|
# This is just kept for future compatiblity in case we require pkgs or something.
|
2024-02-25 10:20:13 +00:00
|
|
|
{}:
|
2024-02-24 02:36:28 +00:00
|
|
|
|
|
|
|
{
|
2024-02-25 09:21:57 +00:00
|
|
|
nixosModules = rec {
|
|
|
|
bahaghari = ./modules;
|
2024-02-25 10:20:13 +00:00
|
|
|
default = bahaghari;
|
2024-02-24 02:36:28 +00:00
|
|
|
};
|
|
|
|
|
2024-02-25 09:21:57 +00:00
|
|
|
homeModules.bahaghari = rec {
|
|
|
|
bahaghari = ./modules;
|
2024-02-25 10:20:13 +00:00
|
|
|
default = bahaghari;
|
2024-02-24 02:36:28 +00:00
|
|
|
};
|
|
|
|
|
2024-02-25 09:21:57 +00:00
|
|
|
nixvimModules = rec {
|
|
|
|
bahaghari = ./modules;
|
|
|
|
default = bahaghari;
|
2024-02-24 02:36:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bahaghariLib = ./lib;
|
|
|
|
}
|