mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
15 lines
232 B
Nix
15 lines
232 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.session.nvim-session-manager;
|
||
|
in {
|
||
|
options.vim.session.nvim-session-manager = {
|
||
|
enable = mkEnableOption "Enable nvim-session-manager";
|
||
|
};
|
||
|
}
|