This repository has been archived on 2024-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
fotochallenge/flake.nix
Valentin Brandl e9e599b78f
Some checks failed
/ Build App (push) Failing after 48s
Initial commit
2024-07-17 12:17:07 +02:00

23 lines
497 B
Nix

{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = (import nixpkgs) {
inherit system;
};
in {
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nodejs ];
};
}
);
}