22 lines
328 B
Nix
22 lines
328 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
profile = import ../profile.nix;
|
|
in
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
fzf
|
|
ripgrep
|
|
ripgrep-all
|
|
];
|
|
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
withPython3 = true;
|
|
withRuby = true;
|
|
withNodeJs = true;
|
|
};
|
|
}
|