summaryrefslogtreecommitdiffstats
path: root/util/liveiso
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-09-03 22:44:22 +0200
committerFelix Singer <felixsinger@posteo.net>2021-09-16 22:55:50 +0000
commit7a474a5bb73ba66eb32da930315e53d5fd74e207 (patch)
tree200e03cd9f23662a38cdafeef6f829ff527d79d7 /util/liveiso
parent821311e23eec64747d68a2e42eeb26e61929d9b0 (diff)
downloadcoreboot-7a474a5bb73ba66eb32da930315e53d5fd74e207.tar.gz
coreboot-7a474a5bb73ba66eb32da930315e53d5fd74e207.tar.bz2
coreboot-7a474a5bb73ba66eb32da930315e53d5fd74e207.zip
util/liveiso: Make neovim the default editor
Make neovim the default editor and create an alias for vim. The NixOS module for neovim is currently broken. Thus, add a note to `description.md` to switch to that later. Change-Id: I9345a6e32f3035565e55e50579c97121b4987d83 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/57393 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/liveiso')
-rw-r--r--util/liveiso/common.nix15
-rw-r--r--util/liveiso/description.md1
2 files changed, 12 insertions, 4 deletions
diff --git a/util/liveiso/common.nix b/util/liveiso/common.nix
index 320971b57c35..6c57dc333dda 100644
--- a/util/liveiso/common.nix
+++ b/util/liveiso/common.nix
@@ -16,10 +16,17 @@
isoName = "${config.isoImage.isoBaseName}-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso";
};
- # Tell the Nix evaluator to garbage collect more aggressively.
- # This is desirable in memory-constrained environments that don't
- # (yet) have swap set up.
- environment.variables.GC_INITIAL_HEAP_SIZE = "1M";
+ environment = {
+ variables = {
+ EDITOR = "nvim";
+ VISUAL = "nvim";
+ # Tell the Nix evaluator to garbage collect more aggressively.
+ # This is desirable in memory-constrained environments that don't
+ # (yet) have swap set up.
+ GC_INITIAL_HEAP_SIZE = "1M";
+ };
+ shellAliases.vim = "nvim";
+ };
boot = {
kernelParams = [
diff --git a/util/liveiso/description.md b/util/liveiso/description.md
index 8f282faddb8c..a9e2eb8b8740 100644
--- a/util/liveiso/description.md
+++ b/util/liveiso/description.md
@@ -9,3 +9,4 @@ NixOS configuration files for testing purposes and for working on firmware.
Will be usable from the next NixOS release.
- Generate customized bootloader configs; FILO is WIP
- Add coreboot toolchain
+- Switch to `programs.neovim` when the module is fixed.