mirror of
https://git.madhouse-project.org/actions/nix.git
synced 2024-11-23 20:19:16 +01:00
18b41c0333
Since it's basically the same as `nix/develop`, with only the nix command changed, leverage the existing script. Signed-off-by: Gergely Nagy <me@gergo.csillger.hu>
11 lines
218 B
Nix
11 lines
218 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/23.05";
|
|
};
|
|
|
|
outputs = { self, nixpkgs }:
|
|
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
in {
|
|
packages.x86_64-linux.hello = pkgs.hello;
|
|
};
|
|
}
|