Files
dotfiles/platforms/home-manager/modules/nmasur/profiles/experimental.nix
T
Noah Masur 373beb6daf move ren and rep to experimental
i don't like having to build them
2026-07-28 16:58:10 -04:00

49 lines
998 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.nmasur.profiles.experimental;
in
{
options.nmasur.profiles.experimental.enable = lib.mkEnableOption "experimental tools";
config = lib.mkIf cfg.enable {
nmasur.presets.programs = {
zed-editor.enable = lib.mkDefault true;
};
home.packages = [
pkgs.nmasur.ren-find # Rename files
pkgs.nmasur.rep-grep # Replace text in files
# Charm tools
pkgs.glow # Markdown previews
pkgs.skate # Key-value store
pkgs.charm # Manage account and filesystem
pkgs.pop # Send emails from a TUI
pkgs.snitch # Network
pkgs.comma # Nix-index auto-launch
pkgs.nix-inspect # TUI for browsing Nix configs
# pkgs.crush # AI LLM Agent
pkgs.gemini-cli # AI LLM Agent
pkgs.antigravity-cli # AI LLM Agent
pkgs.pi-coding-agent # AI LLM Agent
];
programs.gh-dash.enable = lib.mkDefault true;
programs.himalaya.enable = lib.mkDefault true;
};
}