14 lines
292 B
Nix
14 lines
292 B
Nix
|
{ lib, config, self, inputs, ... }:
|
||
|
|
||
|
{
|
||
|
perSystem = { lib, pkgs, system, ... }: {
|
||
|
_module.args.pkgs = import inputs.nixpkgs {
|
||
|
inherit system;
|
||
|
overlays = lib.attrValues self.overlays ++ [
|
||
|
inputs.nix-topology.overlays.default
|
||
|
];
|
||
|
config = { };
|
||
|
};
|
||
|
};
|
||
|
}
|