{ pkgs
, ...
}: {
  home.packages = with pkgs; [
    vlang
  ];
  programs.emacs.extraPackages = epkgs: (with epkgs; [
    v-mode
  ]);
}