mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
15 lines
352 B
Nix
15 lines
352 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.poetry = { enable = true; };
|
|
|
|
test.stubs.poetry = { };
|
|
|
|
nmt.script = let
|
|
expectedConfDir =
|
|
if pkgs.stdenv.isDarwin then "Library/Application Support" else ".config";
|
|
expectedConfigPath = "home-files/${expectedConfDir}/pypoetry/config.toml";
|
|
in ''
|
|
assertPathNotExists "${expectedConfigPath}"
|
|
'';
|
|
}
|