generated from stubbfel/nix-project-template
10 lines
288 B
Nix
10 lines
288 B
Nix
{
|
|
inputs.nixpkgs.url = "nixpkgs/nixos-23.05";
|
|
|
|
outputs = { self, nixpkgs }: rec {
|
|
supportedSystems = [ "x86_64-linux" "aarch64-linux" ];
|
|
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
|
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
|
|
};
|
|
}
|