refactor: reorganize, add package (opencode, osgrep, beads), add ai agent shell
This commit is contained in:
parent
7e0a207778
commit
a0f0f39399
58 changed files with 7867 additions and 42 deletions
24
modules/home/devtools/try.nix
Normal file
24
modules/home/devtools/try.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue