Files
dotfiles/lib/default.nix
Amneesh Singh 950cf357d1 lib/network: init
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-01-23 21:39:56 +05:30

16 lines
281 B
Nix

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