aboutsummaryrefslogtreecommitdiff
path: root/home/profiles
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-01-17 12:49:16 +0900
committersefidel <contact@sefidel.net>2023-01-17 12:49:16 +0900
commit33f9503104aa816d147a006a7ca68b03fbc7f1eb (patch)
tree95780ec05190db7e99814678cc7ec8ef4d445b87 /home/profiles
parent900a5105509c7523dc2c5d034bca6871862206ce (diff)
downloadnixrc-33f9503104aa816d147a006a7ca68b03fbc7f1eb.zip
feat(darwin,nixos): use overlay for neovim
Diffstat (limited to 'home/profiles')
-rw-r--r--home/profiles/base-darwin/default.nix2
-rw-r--r--home/profiles/base/default.nix5
2 files changed, 2 insertions, 5 deletions
diff --git a/home/profiles/base-darwin/default.nix b/home/profiles/base-darwin/default.nix
index 3aa915b..d03b689 100644
--- a/home/profiles/base-darwin/default.nix
+++ b/home/profiles/base-darwin/default.nix
@@ -40,7 +40,7 @@ in
pkgs.tree
pkgs.pinentry_mac
- neovim
+ pkgs.neovim
pkgs.nodejs-16_x
# Common build tools
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix
index fdd524c..e1e895e 100644
--- a/home/profiles/base/default.nix
+++ b/home/profiles/base/default.nix
@@ -3,8 +3,6 @@ let
cfg = config.profiles.base;
neotheme = config.neotheme;
-
- inherit (self.packages.x86_64-linux) neovim;
in
{
imports = [
@@ -96,8 +94,7 @@ in
pkgs.procs
pkgs.sops
pkgs.tree
- # Don't manage neovim
- neovim
+ pkgs.neovim
# Common build tools
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default))