From 8cf765129bfaafa94244a2d8fc1b6bdcc7f2e3ce Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Sat, 17 Aug 2024 09:35:44 -0500 Subject: [PATCH] use nix nimble --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index f444328..dea89e8 100644 --- a/flake.nix +++ b/flake.nix @@ -4,9 +4,9 @@ nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; }; - outputs = inputs @ { - self, + outputs = { nixpkgs, + ... }: let inherit (nixpkgs.lib) genAttrs; supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"]; @@ -16,7 +16,7 @@ default = pkgs.mkShell { buildInputs = with pkgs; [ nim - nim-atlas + nimble watchexec nodePackages.pnpm ];