mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-06 05:20:00 -04:00
feat(nix): add writeText/writeTextDir injection
This commit is contained in:
parent
539abf6da5
commit
4a53f4cb18
2 changed files with 55 additions and 0 deletions
|
|
@ -70,6 +70,19 @@ in {
|
|||
'';
|
||||
};
|
||||
|
||||
drv13 = pkgs.writeText "config.json" ''
|
||||
{
|
||||
"foo": 1,
|
||||
"bar": 2
|
||||
}
|
||||
'';
|
||||
|
||||
drv14 = pkgs.writeTextDir "etc/ssh/ssh_config" ''
|
||||
Host *
|
||||
AddressFamily any
|
||||
ForwardX11 no
|
||||
'';
|
||||
|
||||
mod1 = {
|
||||
type = "lua";
|
||||
config = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue