Files
dotfiles/conf/default.nix
2024-06-01 18:10:31 +05:30

12 lines
206 B
Nix

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