diff --git a/flake.nix b/flake.nix index 82e597e..9fc4d0f 100644 --- a/flake.nix +++ b/flake.nix @@ -18,6 +18,7 @@ overlays = with inputs; [ lix.overlays.default + marleyvim.overlays.default ]; systems.modules.darwin = with inputs; [ @@ -63,8 +64,8 @@ rose-pine.url = "git+https://codewith.babesonthe.net/punkfairie/rose-pine-nix"; - lixyvim = { - url = "git+https://codewith.babesonthe.net/punkfairie/lixyvim"; + marleyvim = { + url = "git+https://codewith.babesonthe.net/punkfairie/marleyvim"; inputs.nixpkgs.follows = "nixpkgs"; inputs.unstable.follows = "unstable"; }; diff --git a/modules/home/programs/neovim/default.nix b/modules/home/programs/neovim/default.nix index 0c859b1..ed7e457 100644 --- a/modules/home/programs/neovim/default.nix +++ b/modules/home/programs/neovim/default.nix @@ -14,7 +14,7 @@ in config = mkIf cfg.enable { home.packages = with pkgs; [ - lixyvim + marleyos.neovim ]; }; } diff --git a/overlays/lixyvim/default.nix b/overlays/lixyvim/default.nix deleted file mode 100644 index 868ebaf..0000000 --- a/overlays/lixyvim/default.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ - inputs, - ... -}: -final: prev: { - lixyvim = inputs.lixyvim.packages.${prev.system}.default; -}