1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/yarn/empty-config.nix
2025-07-23 10:42:37 -05:00

12 lines
228 B
Nix

{
programs.yarn = {
settings = {
httpProxy = "http://proxy.example.org:3128";
httpsProxy = "http://proxy.example.org:3128";
};
};
nmt.script = ''
assertPathNotExists home-files/.yarnrc.yml
'';
}