conf: fix globalArgs

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2024-06-01 18:02:50 +05:30
parent c86fb8b6d3
commit f6f228f990
4 changed files with 17 additions and 10 deletions

View File

@@ -1,13 +1,11 @@
{ inputs, self, ... }:
{
config._module.args.globalArgs = {
_module.args = {
inherit inputs self;
flake = self;
conf = {
colors = import ./colors.nix;
network = import ./network.nix;
};
inherit inputs self;
flake = self;
conf = {
colors = import ./colors.nix;
network = import ./network.nix;
};
};
}