Felix Singer has uploaded this change for review.

View Change

util/liveiso: Make neovim the default editor

Make neovim the default editor and create aliases for vi and vim.

Change-Id: I9345a6e32f3035565e55e50579c97121b4987d83
Signed-off-by: Felix Singer <felixsinger@posteo.net>
---
M util/liveiso/common.nix
1 file changed, 8 insertions(+), 1 deletion(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/93/57393/1
diff --git a/util/liveiso/common.nix b/util/liveiso/common.nix
index 941e624..1b05474 100644
--- a/util/liveiso/common.nix
+++ b/util/liveiso/common.nix
@@ -87,6 +87,14 @@
};
};

+ programs.neovim = {
+ enable = true;
+ defaultEditor = true;
+ package = pkgs.neovim;
+ viAlias = true;
+ vimAlias = true;
+ };
+
environment.systemPackages = with pkgs; [
acpica-tools
btrfs-progs
@@ -127,7 +135,6 @@
mkpasswd
ms-sys
msr-tools
- neovim
nixos-install-tools
ntfsprogs
openssl

To view, visit change 57393. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I9345a6e32f3035565e55e50579c97121b4987d83
Gerrit-Change-Number: 57393
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Singer <felixsinger@posteo.net>
Gerrit-MessageType: newchange