mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
Gabriel Arazas
87db9e9052
This is primarily to avoid importing a "subflake" which will constantly update the lockfile so we'll have this set instead.
21 lines
457 B
Nix
21 lines
457 B
Nix
# Bahaghari's subproject.
|
|
{ ... }:
|
|
|
|
{
|
|
flake = {
|
|
nixosModules = {
|
|
"bahaghari/tinted-theming" = ../../subprojects/bahaghari/modules/tinted-theming;
|
|
};
|
|
|
|
homeModules = {
|
|
"bahaghari/tinted-theming" = ../../subprojects/bahaghari/modules/tinted-theming;
|
|
};
|
|
|
|
nixvimModules = {
|
|
"bahaghari/tinted-theming" = ../../subprojects/bahaghari/modules/tinted-theming;
|
|
};
|
|
|
|
bahaghariLib = ../../subprojects/bahaghari/lib;
|
|
};
|
|
}
|