From 7b078cb32bfb99e4828c31fe7be54a9f1b95724f Mon Sep 17 00:00:00 2001 From: uku Date: Sat, 21 Dec 2024 18:21:52 +0100 Subject: [PATCH] chore(flake): add formatter to shell --- flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 2f80cc1..b3593f8 100644 --- a/flake.nix +++ b/flake.nix @@ -18,6 +18,7 @@ perSystem = { pkgs, system, + self', ... }: { apps = (nixinate.nixinate.${system} self).nixinate; @@ -25,9 +26,10 @@ devShells.default = with pkgs; mkShellNoCC { packages = [ - just - statix agenix.packages.${system}.default + just + self'.formatter + statix ]; };