mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-03-05 16:36:56 +00:00
20 lines
562 B
Nix
20 lines
562 B
Nix
|
{
|
||
|
description = "Description for the project";
|
||
|
|
||
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||
|
|
||
|
outputs = inputs@{ flake-parts, nixpkgs, ... }:
|
||
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
||
|
systems = [ "x86_64-linux" "aarch64-darwin" ];
|
||
|
perSystem = { pkgs, system, ... }: {
|
||
|
# This sets `pkgs` to a nixpkgs with allowUnfree option set.
|
||
|
_module.args.pkgs = import nixpkgs {
|
||
|
inherit system;
|
||
|
config.allowUnfree = true;
|
||
|
};
|
||
|
|
||
|
packages.default = pkgs.hello-unfree;
|
||
|
};
|
||
|
};
|
||
|
}
|