1
0
Fork 0
mirror of https://git.madhouse-project.org/actions/nix.git synced 2025-05-17 08:49:54 +02:00

Add a nix/shell action

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>
This commit is contained in:
Gergely Nagy 2023-09-22 21:43:51 +02:00
parent 63e7eb4047
commit 18b41c0333
6 changed files with 109 additions and 1 deletions

11
shell/test/flake.nix Normal file
View file

@ -0,0 +1,11 @@
{
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;
};
}