refactor: get rid of useless global vars

This commit is contained in:
matt1432 2024-11-18 12:30:54 -05:00
commit 155a9884ee
16 changed files with 25 additions and 50 deletions
common/home/neovim/langs

View file

@ -1,5 +1,6 @@
{
config,
osConfig,
pkgs,
lib,
nixd,
@ -7,7 +8,8 @@
...
}: let
inherit (lib) getExe hasPrefix mkIf removePrefix;
inherit (config.vars) hostName mainUser neovimIde;
inherit (config.vars) mainUser neovimIde;
inherit (osConfig.networking) hostName;
defaultFormatter = self.formatter.${pkgs.system};