nix-config/modules/nixvim/extra-packages.nix

11 lines
152 B
Nix
Raw Normal View History

2025-07-26 02:35:57 +01:00
{
flake.modules.nixvim.custom =
{ pkgs, ... }:
{
extraPackages = with pkgs; [
nixfmt-rfc-style
stylua
];
};
}