From d5ad3c909c004f202019f662bf7304ee59f6b5e4 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Tue, 25 Jun 2024 00:46:34 -0700 Subject: [PATCH] Add nixpkgs-fmt to dev shell --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b48f42c..cd2ab9a 100644 --- a/flake.nix +++ b/flake.nix @@ -82,7 +82,7 @@ { devShells = forEachSupportedSystem ({ pkgs }: { default = pkgs.mkShell { - packages = with pkgs; [ build check format update ]; + packages = with pkgs; [ build check format update nixpkgs-fmt ]; }; });