chore: split user progs into own file

This commit is contained in:
Khaïs COLIN 2024-08-22 16:40:51 +00:00
parent 884d58742d
commit b63cc6e8cd
2 changed files with 25 additions and 23 deletions

24
userprogs.nix Normal file
View file

@ -0,0 +1,24 @@
{
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
'';
};
};
}