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