23 lines
313 B
Nix
23 lines
313 B
Nix
{ config, pkgs, ...} : {
|
|
programs = {
|
|
neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
};
|
|
git = {
|
|
enable = true;
|
|
config = {
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
};
|
|
};
|
|
ssh = {
|
|
enableAskPassword = true;
|
|
knownHosts = {
|
|
#TODO: gopher, ferris etc.
|
|
};
|
|
};
|
|
};
|
|
}
|