1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-31 04:04:55 +00:00

Use inputs.nixpkgs

This commit is contained in:
Yang, Bo 2023-05-06 20:08:39 -07:00
parent 84986d2b88
commit b1264a2255

View file

@ -1,7 +1,7 @@
{inputs, flake-parts-lib, ...}: {
{inputs, ...}: {
options.perSystem = mkPerSystemOption ({ pkgs, system, ... }: {
imports = [
"${inputs.nixpkgs or (flake-parts-lib.findInputByOutPath ./. inputs).nixpkgs}/nixos/modules/misc/nixpkgs.nix"
"${inputs.nixpkgs}/nixos/modules/misc/nixpkgs.nix"
];
nixpkgs.hostPlatform = system;
});