mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 03:20:20 +00:00
17 lines
548 B
Nix
17 lines
548 B
Nix
{inputs, ...}: {
|
|
systems = import inputs.systems;
|
|
|
|
perSystem = {system, ...}: {
|
|
# this is what controls how packages in the flake are built, but this is not passed to the
|
|
# builders in lib which is important to note, since we have to do something different for
|
|
# the builders to work correctly
|
|
_module.args.pkgs = import inputs.nixpkgs {
|
|
inherit system;
|
|
config = {
|
|
allowUnfree = true;
|
|
allowUnsupportedSystem = true;
|
|
};
|
|
# overlays = [ inputs.nix-topology.overlays.default ];
|
|
};
|
|
};
|
|
}
|