This repository has been archived on 2024-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
neovim/lib.nix

8 lines
180 B
Nix
Raw Normal View History

2023-06-09 14:37:25 +03:00
{ lib, substituteAll, ... }:
2022-10-22 23:35:27 +03:00
2022-09-24 17:21:16 +03:00
let
2023-06-09 14:37:25 +03:00
readSubFile = src: params: builtins.readFile
(substituteAll (params // { inherit src; }));
2022-09-24 17:21:16 +03:00
in
2024-04-16 18:54:21 +03:00
lib // { inherit readSubFile substituteAll; }