1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

nix profile: add aliases

This commit is contained in:
Ethan Edwards 2021-06-29 13:10:44 -04:00
parent c92fbdb654
commit cf6eac8455
No known key found for this signature in database
GPG key ID: F1AD8EEE1366610B

View file

@ -549,8 +549,10 @@ struct CmdProfile : NixMultiCommand
: MultiCommand({
{"install", []() { return make_ref<CmdProfileInstall>(); }},
{"remove", []() { return make_ref<CmdProfileRemove>(); }},
{"rm", []() { return make_ref<CmdProfileRemove>(); }},
{"upgrade", []() { return make_ref<CmdProfileUpgrade>(); }},
{"list", []() { return make_ref<CmdProfileList>(); }},
{"ls", []() { return make_ref<CmdProfileList>(); }},
{"diff-closures", []() { return make_ref<CmdProfileDiffClosures>(); }},
{"history", []() { return make_ref<CmdProfileHistory>(); }},
})