X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/96063a5164fcd9e6ec72c1912d41d77856fa980f..9e8ed0ed099aec5085d4eb3dc809f92d797ec932:/pinch.py diff --git a/pinch.py b/pinch.py index 8c9e976..a7f3449 100644 --- a/pinch.py +++ b/pinch.py @@ -727,8 +727,7 @@ def updateCommand(args: argparse.Namespace) -> None: command = [ 'nix-env', '--profile', - '/nix/var/nix/profiles/per-user/%s/channels' % - getpass.getuser(), + args.profile, '--show-trace', '--file', '', @@ -751,6 +750,8 @@ def main() -> None: parser_pin.set_defaults(func=pinCommand) parser_update = subparsers.add_parser('update') parser_update.add_argument('--dry-run', action='store_true') + parser_update.add_argument('--profile', default=( + '/nix/var/nix/profiles/per-user/%s/channels' % getpass.getuser())) parser_update.add_argument('channels_file', type=str, nargs='+') parser_update.set_defaults(func=updateCommand) args = parser.parse_args()