Files
nix/home-manager/common/programs/neovim/default.nix
T
Miguel Palhas 630c588558 code review
2024-10-04 15:59:10 +01:00

6 lines
168 B
Nix

{ inputs, pkgs, ... }: {
imports = [ inputs.nvchad4nix.homeManagerModule ];
home.sessionVariables = { EDITOR = "nvim"; };
programs.nvchad = { enable = true; };
}