mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
bahaghari: allow non-flakes usage
This commit is contained in:
parent
6000026719
commit
469e5194cc
18
subprojects/bahaghari/default.nix
Normal file
18
subprojects/bahaghari/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
# This is just kept for future compatiblity in case we require pkgs or something.
|
||||
{ }:
|
||||
|
||||
{
|
||||
nixosModules = {
|
||||
"bahaghari/tinted-theming" = ./modules/tinted-theming;
|
||||
};
|
||||
|
||||
homeModules = {
|
||||
"bahaghari/tinted-theming" = ./modules/tinted-theming;
|
||||
};
|
||||
|
||||
nixvimModules = {
|
||||
"bahaghari/tinted-theming" = ./modules/tinted-theming;
|
||||
};
|
||||
|
||||
bahaghariLib = ./lib;
|
||||
}
|
@ -11,19 +11,5 @@
|
||||
in inputs.flake-utils.lib.eachSystem systems (system: {
|
||||
devShells.default =
|
||||
import ./shell.nix { pkgs = import nixpkgs { inherit system; }; };
|
||||
}) // {
|
||||
nixosModules = {
|
||||
"bahaghari/tinted-theming" = ./modules/tinted-theming;
|
||||
};
|
||||
|
||||
homeModules = {
|
||||
"bahaghari/tinted-theming" = ./modules/tinted-theming;
|
||||
};
|
||||
|
||||
nixvimModules = {
|
||||
"bahaghari/tinted-theming" = ./modules/tinted-theming;
|
||||
};
|
||||
|
||||
bahaghariLib = ./lib;
|
||||
};
|
||||
}) // import ./default.nix { };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user