refactor!: use inputs directly instead of overlays

This commit is contained in:
Moritz Böhme 2024-01-16 12:37:50 +01:00
parent 6ceddb1f94
commit a3289ee611
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
5 changed files with 7 additions and 17 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, inputs, ... }:
with lib;
let
@ -21,7 +21,7 @@ in
programs.neovim = {
enable = true;
package = pkgs.neovim-nightly;
package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
vimAlias = true;
vimdiffAlias = true;
withNodeJs = true;