20 lines
375 B
Nix
Raw Normal View History

{
description = "A tiny flake scaffolded from 14-template";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
{ nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
packages = [ pkgs.jq ];
};
};
}