rix101/nix/pkgs.nix
reo101 eeae48b5d8
refactor(flake): extract more stuff in flake modules
`pkgs` redefinition (with overlays)
`nix-topology` setup
`agenix-rekey` setup
2024-07-19 12:35:01 +03:00

13 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 = { };
};
};
}