-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
153 lines (143 loc) · 4.1 KB
/
Copy pathflake.nix
File metadata and controls
153 lines (143 loc) · 4.1 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
description = "Declarative Claude Code in Nix — plugins, marketplaces, skills, hooks, MCP, and permissions as composable home-manager modules. Reproducible on macOS and Linux.";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
# Org-wide dev-hygiene (treefmt + pre-commit + zizmor) is imported as a
# flake-module from dryvist/.github (see imports below). That flake is
# lean — treefmt-nix + git-hooks only — so this stays free of the
# devenv / crate2nix / devshell baggage nix-devenv would drag in, while
# keeping the config in one org-wide home instead of inlined here.
dryvist-github = {
url = "github:dryvist/.github";
inputs.nixpkgs.follows = "nixpkgs";
};
ai-assistant-instructions = {
url = "github:JacobPEvans/ai-assistant-instructions";
flake = false;
};
claude-code-plugins = {
url = "github:anthropics/claude-code";
flake = false;
};
claude-cookbooks = {
url = "github:anthropics/claude-cookbooks";
flake = false;
};
claude-plugins-official = {
url = "github:anthropics/claude-plugins-official";
flake = false;
};
anthropic-agent-skills = {
url = "github:anthropics/skills";
flake = false;
};
bills-claude-skills = {
url = "github:BillChirico/bills-claude-skills";
flake = false;
};
bitwarden-marketplace = {
url = "github:bitwarden/ai-plugins";
flake = false;
};
cc-dev-tools = {
url = "github:Lucklyric/cc-dev-tools";
flake = false;
};
cc-marketplace = {
url = "github:ananddtyagi/cc-marketplace";
flake = false;
};
claude-code-plugins-plus = {
url = "github:jeremylongshore/claude-code-plugins-plus";
flake = false;
};
claude-code-workflows = {
url = "github:wshobson/agents";
flake = false;
};
claude-skills = {
url = "github:secondsky/claude-skills";
flake = false;
};
jacobpevans-cc-plugins = {
url = "github:JacobPEvans/claude-code-plugins";
flake = false;
};
karpathy-skills = {
url = "github:forrestchang/andrej-karpathy-skills";
flake = false;
};
lunar-claude = {
url = "github:basher83/lunar-claude";
flake = false;
};
obsidian-skills = {
url = "github:kepano/obsidian-skills";
flake = false;
};
openai-codex = {
url = "github:openai/codex-plugin-cc";
flake = false;
};
axton-obsidian-visual-skills = {
url = "github:axtonliu/axton-obsidian-visual-skills";
flake = false;
};
superpowers-marketplace = {
url = "github:obra/superpowers-marketplace";
flake = false;
};
visual-explainer-marketplace = {
url = "github:nicobailon/visual-explainer";
flake = false;
};
wakatime = {
url = "github:wakatime/claude-code-wakatime";
flake = false;
};
huggingface-skills = {
url = "github:huggingface/skills";
flake = false;
};
browser-use-skills = {
url = "github:browser-use/browser-use";
flake = false;
};
vct-cribl-pack-validator-skills = {
url = "github:VisiCore/vct-cribl-pack-validator";
flake = false;
};
fabric-src = {
url = "github:danielmiessler/fabric";
flake = false;
};
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
imports = [
./flake/modules.nix
./flake/lib.nix
# treefmt + pre-commit + zizmor — org-wide flake-module from
# dryvist/.github (lean: no devenv/crate2nix/devshell baggage).
inputs.dryvist-github.flakeModules.dev-hygiene
./flake/checks.nix
./flake/dev-shell.nix
./flake/templates.nix
];
};
}