Uncomment development package imports and include the `opencode` tool in both system and Zed packages. Update librewolf’s search URL template and refresh locked revisions, hashes, and timestamps in the flake.lock.
10 lines
136 B
Nix
10 lines
136 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
# Learning & practice
|
|
exercism
|
|
# AI coding
|
|
opencode
|
|
];
|
|
}
|