(cherry picked from commit e9c599e40c)
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
Co-authored-by: Friedrich Altheide <11352905+FriedrichAltheide@users.noreply.github.com>
12 lines
228 B
Nix
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
|
|
'';
|
|
}
|