pantheon/users/modules/editor.nix
2025-03-05 06:45:37 +08:00

6 lines
105 B
Nix

{pkgs, ...}: {
home.sessionVariables.EDITOR = "nvim";
home.packages = with pkgs; [
neovim
];
}