infrastructure/users/kat/dev/rustfmt.nix

11 lines
156 B
Nix

{ config, pkgs, ... }:
{
programs.rustfmt = {
enable = true;
config = {
hard_tabs = true;
imports_granularity = "One";
};
};
}