mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
13 lines
228 B
Nix
13 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
|
|
'';
|
|
}
|