2024-08-15 09:21:27 +00:00
|
|
|
# The user entrypoint for Bahaghari. Basically, the most important piece to
|
|
|
|
# maintain. Just keep in mind we shouldn't have anything requiring from the
|
|
|
|
# npins sources in here.
|
|
|
|
#
|
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-05-17 02:57:35 +00:00
|
|
|
homeModules = rec {
|
2024-02-25 09:21:57 +00:00
|
|
|
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;
|
|
|
|
}
|