quartz/flake.nix
2024-08-19 23:10:56 +02:00

19 lines
366 B
Nix

{
description = "A development environment for quartz";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
nodejs
];
};
};
}