Archived
1
0

feat: define devkit neovim as default editor

This commit is contained in:
Guz
2025-09-13 22:13:08 -03:00
parent 6ba4189909
commit 398bf9f963

View File

@@ -1,9 +1,11 @@
{
inputs,
config,
inputs,
lib,
pkgs,
...
}: {
}:
with lib; {
imports = [
./capytal
./abaduh
@@ -29,6 +31,7 @@
packages = with pkgs;
[
libinput
inputs.dot013-nix.packages.${pkgs.system}.neovim
]
++ (with inputs.dot013-nix.packages.${pkgs.system}.devkit; [
git
@@ -39,6 +42,10 @@
]);
};
environment.sessionVariables = {
EDITOR = getExe inputs.dot013-nix.packages.${pkgs.system}.neovim;
};
# GnuPG
programs.gnupg.agent = {
enable = true;