29 lines
471 B
Nix
29 lines
471 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
zellij lnav htop
|
|
];
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
config = {
|
|
user = {
|
|
email = "khais.colin@gmail.com";
|
|
name = "Khaïs COLIN";
|
|
};
|
|
core.editor = "nvim";
|
|
};
|
|
};
|
|
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
vimAlias = true;
|
|
viAlias = true;
|
|
configure = {
|
|
customRC = ''
|
|
set modeline
|
|
'';
|
|
};
|
|
};
|
|
}
|