Files
nix/home/common/programs/neovim/default.nix
T
Miguel Palhas af99c3be6f updates
2025-02-24 11:10:06 +00:00

17 lines
259 B
Nix

{ inputs, pkgs, ... }:
{
imports = [ inputs.nvchad4nix.homeManagerModule ];
home.sessionVariables = {
EDITOR = "nvim";
};
home.packages = with pkgs; [
nixfmt-rfc-style
biome
stylua
];
programs.nvchad = {
enable = true;
};
}