refactor: reorganize, add package (opencode, osgrep, beads), add ai agent shell

This commit is contained in:
Rasyidan Akbar F. 2025-12-09 15:09:05 +07:00
commit a0f0f39399
58 changed files with 7867 additions and 42 deletions

View file

@ -0,0 +1,27 @@
{ pkgs, lib, ... }: {
programs.helix = {
enable = lib.mkDefault true;
settings = {
theme = "gruber-darker";
editor = {
auto-save = {
focus-lost = true;
after-delay = {
enable = true;
timeout = 3000;
};
};
cursor-shape = {
normal = "block";
insert = "bar";
select = "underline";
};
};
};
languages.language = [{
name = "nix";
auto-format = true;
formatter.command = "${pkgs.nixfmt-classic}/bin/nixfmt";
}];
};
}