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