flake: add flake-utils import and use eachDefaultSystem (#3704)

This commit is contained in:
6543
2024-05-13 21:57:36 +02:00
committed by GitHub
parent a700b5855e
commit 83eba294c7
2 changed files with 10 additions and 28 deletions

View File

@@ -1,16 +1,13 @@
{
# Override nixpkgs to use the latest set of node packages
inputs.nixpkgs.url = "github:NixOS/nixpkgs/master";
inputs.systems.url = "github:nix-systems/default";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/master";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
systems,
}:
flake-utils.lib.eachSystem (import systems) (
{ nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };