infrastructure/config/users/kat/dev/rustfmt.nix
2021-09-03 05:03:43 +01:00

11 lines
156 B
Nix

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