nix-stuff/roles/common/programs/command-not-found.nix
2023-06-01 13:07:12 +02:00

6 lines
149 B
Nix
Executable file

{ config, ... }:
{
# The nixpkgs command-not-found script does not work with flakes, so I disable it
programs.command-not-found.enable = false;
}