-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom-packages.nix
More file actions
30 lines (22 loc) · 1.12 KB
/
custom-packages.nix
File metadata and controls
30 lines (22 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Custom package definitions
# These are packages not available in nixpkgs or requiring customization
self: super: {
# Agentsview session viewer
agentsview = super.callPackage ./../packages/agentsview/package.nix {};
# Claude desktop app
claude-desktop = super.callPackage ./../packages/claude-desktop/package.nix {};
# GitHub Desktop with custom configuration
github-desktop = super.callPackage ./../packages/github-desktop/package.nix {};
# FastScripts automation tool for macOS
fastscripts = super.callPackage ./../packages/fastscripts/package.nix {};
# FileBrowser quantum fork
filebrowser-quantum = super.callPackage ./../packages/filebrowser-quantum/package.nix {};
# MCP Gateway
mcpjungle = super.callPackage ./../packages/mcpjungle/package.nix {};
# Mochi spaced repetition software
mochi = super.callPackage ./../packages/mochi/package.nix {};
# Transmission client alternative
transmissionic = super.callPackage ./../packages/transmissionic/package.nix {};
# Ungoogled Chromium with privacy enhancements
ungoogled-chromium = super.callPackage ./../packages/ungoogled-chromium/package.nix {};
}