8 lines
179 B
Nix
8 lines
179 B
Nix
{config, ...}: let
|
|
inherit (config.modules.other.system) username;
|
|
in {
|
|
home-manager.${username}.
|
|
programs.neovim-flake.settings.vim = {
|
|
telescope.enable = true;
|
|
};
|
|
}
|