fix: basic flake check should work now (#74)

This commit is contained in:
*Kim Zick 2022-12-01 18:15:21 -05:00 committed by GitHub
parent 4880459702
commit 78f5f36738
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -1,7 +1,8 @@
{ config, pkgs, lib, helpers, ... }: { config, pkgs, lib, ... }:
with lib; with lib;
let let
cfg = config.plugins.lspkind; cfg = config.plugins.lspkind;
helpers = import ../helpers.nix { inherit lib; };
in in
{ {
options.plugins.lspkind = { options.plugins.lspkind = {

View file

@ -1,6 +1,7 @@
{ config, pkgs, lib, helpers, ... }: { config, pkgs, lib, ... }:
let let
cfg = config.plugins.trouble; cfg = config.plugins.trouble;
helpers = import ../helpers.nix { inherit lib; };
in in
with lib; with lib;
# with helpers; # with helpers;