8 lines
166 B
Nix
8 lines
166 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
let
|
|
inherit (lib) mkEnableOption mkIf readFile;
|
|
in
|
|
{
|
|
home-manager.users.moritz.programs.nixvim.plugins.lz-n.enable = true;
|
|
}
|