diff options
| author | seth <[email protected]> | 2024-02-03 20:06:30 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-02-03 20:47:55 -0500 |
| commit | 9d37a9a065c021ec5951b9d1b5c97a4b165182b1 (patch) | |
| tree | 22cd40771256f6c3512897a4582ea6cb70b91129 /users/seth/module/programs/neovim.nix | |
| parent | 1ac587856745cddb0f9be4441da57568bb8825b8 (diff) | |
flakeModules/configurations: add inputs' as a special arg
Diffstat (limited to 'users/seth/module/programs/neovim.nix')
| -rw-r--r-- | users/seth/module/programs/neovim.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/users/seth/module/programs/neovim.nix b/users/seth/module/programs/neovim.nix index 6220853..8230c8d 100644 --- a/users/seth/module/programs/neovim.nix +++ b/users/seth/module/programs/neovim.nix @@ -2,11 +2,10 @@ config, lib, pkgs, - inputs, + inputs', ... }: let cfg = config.seth.programs.neovim; - inherit (pkgs.stdenv.hostPlatform) system; in { options.seth.programs.neovim = { enable = lib.mkEnableOption "Neovim configuration" // {default = true;}; @@ -15,7 +14,7 @@ in { config = lib.mkIf cfg.enable { home.packages = [ (let - getchvim = inputs.getchvim.packages.${system}.default; + getchvim = inputs'.getchvim.packages.default; in # remove desktop file pkgs.symlinkJoin { |
