Files
dotfiles/conf/default.nix
2024-05-27 23:00:24 +05:30

14 lines
246 B
Nix

{ inputs, self, ... }:
{
config._module.args.globalArgs = {
_module.args = {
inherit inputs self;
flake = self;
conf = {
colors = import ./colors.nix;
network = import ./network.nix;
};
};
};
}