mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
10 lines
241 B
Nix
10 lines
241 B
Nix
{pkgs}: {
|
|
home.packages = with pkgs; [
|
|
verilator # Formatter
|
|
iverilog # Simulator: Icarus Verilog
|
|
gtkwave # Waveform Viewer
|
|
vimPlugins.nvim-treesitter-parsers.verilog
|
|
];
|
|
|
|
programs.zed-editor.extensions = ["verilog"];
|
|
}
|