nix key: Fix error message and don't require flakes

This commit is contained in:
Samuel Dionne-Riel 2021-11-11 21:29:18 -05:00
parent 52a3b2ee63
commit c1dea92dd6

View file

@ -218,8 +218,7 @@ struct CmdKey : NixMultiCommand
void run() override void run() override
{ {
if (!command) if (!command)
throw UsageError("'nix flake' requires a sub-command."); throw UsageError("'nix key' requires a sub-command.");
settings.requireExperimentalFeature(Xp::Flakes);
command->second->prepare(); command->second->prepare();
command->second->run(); command->second->run();
} }