46 lines
1 KiB
Nix
46 lines
1 KiB
Nix
{
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (inputs) self;
|
|
inherit (lib) mkDefault nixosSystem recursiveUpdate;
|
|
inherit (lib.lists) singleton concatLists;
|
|
|
|
mkSystem = {
|
|
withSystem,
|
|
system,
|
|
...
|
|
} @ args:
|
|
withSystem system (
|
|
{
|
|
inputs',
|
|
self',
|
|
...
|
|
}:
|
|
nixosSystem {
|
|
inherit system;
|
|
specialArgs =
|
|
recursiveUpdate
|
|
{
|
|
inherit lib;
|
|
inherit inputs inputs';
|
|
inherit self self';
|
|
}
|
|
(args.specialArgs or {});
|
|
modules = concatLists [
|
|
# This is used to pre-emptively set the hostPlatform for nixpkgs.
|
|
# We need a singleton here since we concatenate lists, and a singleton
|
|
# generates a list with a single element.
|
|
(singleton {
|
|
nixpkgs.hostPlatform = mkDefault args.system;
|
|
})
|
|
|
|
# We pass our modules from the arguments
|
|
(args.modules or [])
|
|
];
|
|
}
|
|
);
|
|
in {
|
|
inherit mkSystem;
|
|
}
|