nixos-config/treefmt.nix

9 lines
172 B
Nix
Raw Normal View History

2025-01-24 08:24:42 -03:00
{ pkgs, ... }:
{
projectRootFile = "flake.nix";
programs.nixfmt.enable = true;
programs.nixfmt.package = pkgs.nixfmt-rfc-style;
settings.on-unmatched = "debug";
}