mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
22 lines
368 B
Nix
22 lines
368 B
Nix
# This is just kept for future compatiblity in case we require pkgs or something.
|
|
{}:
|
|
|
|
{
|
|
nixosModules = rec {
|
|
bahaghari = ./modules;
|
|
default = bahaghari;
|
|
};
|
|
|
|
homeModules.bahaghari = rec {
|
|
bahaghari = ./modules;
|
|
default = bahaghari;
|
|
};
|
|
|
|
nixvimModules = rec {
|
|
bahaghari = ./modules;
|
|
default = bahaghari;
|
|
};
|
|
|
|
bahaghariLib = ./lib;
|
|
}
|