Files
nixos-config/home/common/programs/neovim/default.nix
T
Miguel Palhas 5256730fe1 code review
2024-10-04 17:35:03 +01:00

6 lines
168 B
Nix

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