flake-update-20260201
1{ pkgs, ... }:
2
3pkgs.writeShellApplication {
4 name = "nixfmt-plus";
5 runtimeInputs = with pkgs; [
6 deadnix
7 nixfmt
8 statix
9 ];
10 text = ''
11 set -x
12 deadnix --edit
13 statix fix
14 nixfmt .
15 '';
16}