15 lines
239 B
Nix
15 lines
239 B
Nix
{ inputs, self, ... }:
|
|
{
|
|
imports = [
|
|
{
|
|
config._module.args.globalArgs = {
|
|
_module.args = {
|
|
inherit inputs self;
|
|
flake = self;
|
|
colors = import ./colors.nix;
|
|
};
|
|
};
|
|
}
|
|
];
|
|
}
|