From 2c33b3e48791bcf70014912cb28d6aff53f82411 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Fri, 22 Nov 2024 17:05:34 -0800 Subject: [PATCH] fix: lixyvim -> marleyos --- flake.nix | 5 +++-- modules/home/programs/neovim/default.nix | 2 +- overlays/lixyvim/default.nix | 7 ------- 3 files changed, 4 insertions(+), 10 deletions(-) delete mode 100644 overlays/lixyvim/default.nix 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; -}