fix: formatting
This commit is contained in:
parent
e882fc2645
commit
8602bf0328
1 changed files with 8 additions and 5 deletions
13
flake.nix
13
flake.nix
|
@ -4,12 +4,15 @@
|
|||
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
flake-utils,
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem (
|
||||
system: let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
{
|
||||
in {
|
||||
devShell = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
jq
|
||||
|
|
Loading…
Add table
Reference in a new issue