Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2024-02-25 17:16:10 +05:30
parent e0a9283d2e
commit ed71d6459c
5 changed files with 17 additions and 27 deletions

View File

@@ -1,17 +1,13 @@
{ inputs, self, ... }:
{
imports = [
{
config._module.args.globalArgs = {
_module.args = {
inherit inputs self;
flake = self;
lib' = {
colors = import ./colors.nix;
network = import ./network.nix;
};
};
config._module.args.globalArgs = {
_module.args = {
inherit inputs self;
flake = self;
lib' = {
colors = import ./colors.nix;
network = import ./network.nix;
};
}
];
};
};
}