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

@ -1,24 +0,0 @@
{ config, lib, pkgs, try, ... }:
let
inherit (lib) mkEnableOption mkOption types mkIf;
cfg = config.rsydn.try;
in {
imports = [ try.homeModules.default ];
options.rsydn.try = {
enable = mkEnableOption "Try - temporary project directory manager";
path = mkOption {
type = types.str;
default = "~/src/tries";
description = "Storage directory for try experiment instances.";
};
};
config = mkIf cfg.enable {
programs.try = {
enable = true;
path = cfg.path;
};
};
}