Files
home-manager/tests/modules/programs/tex-fmt/default-settings.nix
2026-04-13 22:02:40 -05:00

18 lines
382 B
Nix

{ pkgs, ... }:
{
config = {
programs.tex-fmt = {
enable = true;
};
nmt.script =
let
expectedConfDir = if pkgs.stdenv.isDarwin then "Library/Application Support" else ".config";
expectedConfigPath = "home-files/${expectedConfDir}/tex-fmt/tex-fmt.toml";
in
''
assertPathNotExists "${expectedConfigPath}"
'';
};
}