Enable command-not-found

5a5db609e5bd83bc589f36eef394f3ad172d6648 disabled it by default, which
may have been unintentional. mkEnableOption considered harmful.

+8 -1
+8 -1
nixos/modules/programs/command-not-found/command-not-found.nix
··· 25 25 { 26 26 options.programs.command-not-found = { 27 27 28 - enable = mkEnableOption "command-not-found hook for interactive shell"; 28 + enable = mkOption { 29 + type = types.bool; 30 + default = true; 31 + description = '' 32 + Whether interactive shells should show which Nix package (if 33 + any) provides a missing command. 34 + ''; 35 + }; 29 36 30 37 dbPath = mkOption { 31 38 default = "/nix/var/nix/profiles/per-user/root/channels/nixos/programs.sqlite" ;