Files
dotfiles/lib/default.nix
Amneesh Singh 8e3a3aca2b lib: rename
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-03-08 11:22:04 +05:30

18 lines
317 B
Nix

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