Files
dotfiles/lib/default.nix
Amneesh Singh ed71d6459c fmt
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-02-25 17:16:10 +05:30

14 lines
246 B
Nix

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