all repos — nixfiles @ 54c18184114b266cec0966b663e12e60c52ed985

System and user configuration, managed by nix and home-manager

npmrc: Fix creation of '$HOME' dir

Alan Pearce
commit

54c18184114b266cec0966b663e12e60c52ed985

parent

424117953b6441f9be061f4c8324e66da971746b

2 files changed, 7 insertions(+), 3 deletions(-)

jump to
M autorandr/.config/autorandr/postswitchautorandr/.config/autorandr/postswitch
@@ -2,9 +2,13 @@ #!/bin/sh
DPI=96 case $AUTORANDR_CURRENT_PROFILE in ("laptop") - DPI=144;; + DPI=144 + nmcli radio wifi on + ;; ("docked") - DPI=120;; + DPI=120 + nmcli radio all off + ;; esac xrandr --dpi $DPI
M javascript/.npmrcjavascript/.npmrc
@@ -1,3 +1,3 @@
-prefix=$HOME/.local +prefix=${HOME}/.local //registry.npmjs.org/:_authToken=$NPM_TOKEN @satoshipay:registry=http://registry.npmjs.org/