2025-12-12 04:10:50 +01:00
|
|
|
{lib, ...}: {
|
|
|
|
|
options.fireproof = {
|
|
|
|
|
work.enable = lib.mkEnableOption "Enable work-related applications and tools";
|
|
|
|
|
dev.enable = lib.mkEnableOption "Enable development tools and applications";
|
|
|
|
|
};
|
|
|
|
|
|
2025-05-20 20:05:23 +02:00
|
|
|
imports = [
|
|
|
|
|
./fish/default.nix
|
2026-01-11 23:00:26 +01:00
|
|
|
./zsh/default.nix
|
2025-05-21 08:21:42 +02:00
|
|
|
./claude.nix
|
|
|
|
|
./comma.nix
|
2025-05-20 20:05:23 +02:00
|
|
|
./core.nix
|
|
|
|
|
./git.nix
|
2025-09-01 11:29:08 +02:00
|
|
|
./jujutsu.nix
|
2025-05-20 20:05:23 +02:00
|
|
|
./just.nix
|
|
|
|
|
./neovim.nix
|
|
|
|
|
./zellij.nix
|
|
|
|
|
./zoxide.nix
|
2025-09-03 09:16:04 +02:00
|
|
|
./systemd-manager-tui.nix
|
2025-08-20 10:49:33 +02:00
|
|
|
./llm.nix
|
2025-12-12 04:10:50 +01:00
|
|
|
|
|
|
|
|
# Apps (migrated from legacy_modules/apps)
|
|
|
|
|
./chromium.nix
|
|
|
|
|
./ferdium.nix
|
|
|
|
|
./firefox.nix
|
|
|
|
|
./ghostty.nix
|
|
|
|
|
./obsidian.nix
|
|
|
|
|
./pycharm.nix
|
|
|
|
|
./slack.nix
|
|
|
|
|
./spotify.nix
|
|
|
|
|
./sublime-merge.nix
|
|
|
|
|
./vscode.nix
|
|
|
|
|
./zed.nix
|
|
|
|
|
|
|
|
|
|
# Dev tools (migrated from legacy_modules/dev)
|
|
|
|
|
./clickhouse.nix
|
|
|
|
|
./docker.nix
|
|
|
|
|
./javascript.nix
|
|
|
|
|
./k8s.nix
|
|
|
|
|
./nats.nix
|
|
|
|
|
./playwright.nix
|
|
|
|
|
./postgres.nix
|
|
|
|
|
./python.nix
|
|
|
|
|
./tilt.nix
|
2025-05-20 20:05:23 +02:00
|
|
|
];
|
2025-08-20 10:49:33 +02:00
|
|
|
}
|