Files
niphas/modules/editor.nix

12 lines
276 B
Nix
Raw Normal View History

2026-02-03 17:25:28 +01:00
{ lib, pkgs, ... }:
{
2026-02-04 08:00:56 +01:00
environment.variables.EDITOR = lib.getExe pkgs.niphas-editor;
2026-02-03 17:25:28 +01:00
environment.shellAliases.vi = "nvim";
environment.shellAliases.vim = "nvim";
environment.shellAliases.view = "nvim -R";
2026-02-03 17:37:37 +01:00
environment.systemPackages = [
2026-02-04 08:00:56 +01:00
pkgs.niphas-editor
2026-02-03 17:37:37 +01:00
];
2026-02-03 17:25:28 +01:00
}