17 lines
268 B
Nix
17 lines
268 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
inputs,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
options.artemist.pkgs-unstable = lib.mkOption {
|
||
|
type = lib.types.pkgs;
|
||
|
internal = true;
|
||
|
};
|
||
|
|
||
|
config.artemist.pkgs-unstable = import inputs.nixpkgs-unstable {
|
||
|
inherit (config.nixpkgs.hostPlatform) system;
|
||
|
};
|
||
|
}
|