2.home-manager/tests/modules/programs/poetry/default-settings.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

16 lines
342 B
Nix

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