mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
18 lines
548 B
Nix
18 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 ];
|
||
|
};
|
||
|
};
|
||
|
}
|