Files
dotfiles/lib/default.nix
Amneesh Singh 7ed47be803 lib: init
also added globalArgs

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-01-23 20:41:42 +05:30

15 lines
239 B
Nix

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