Files
nixos-config/home/common/programs/neovim/default.nix
T
Miguel Palhas e2f324ffaa Setting up rofi
2024-10-05 11:44:41 +01: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;
};
}