nixos-config/subprojects/bahaghari/default.nix

26 lines
537 B
Nix
Raw Normal View History

# 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
{
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 {
bahaghari = ./modules;
2024-02-25 10:20:13 +00:00
default = bahaghari;
2024-02-24 02:36:28 +00:00
};
nixvimModules = rec {
bahaghari = ./modules;
default = bahaghari;
2024-02-24 02:36:28 +00:00
};
bahaghariLib = ./lib;
}