upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/docs/how-to/nix-flakes.md
blob: 4242368805a885f94311d3b231fd072a678c82c7 (plain)
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
# How-To: Configure Nix Flakes for Development

**Purpose:** Set up and use Nix flakes for ngit-grasp development  
**Difficulty:** Intermediate  
**Time:** 10 minutes

---

## Problem

You want to:
- Set up a reproducible development environment
- Avoid "works on my machine" issues
- Use Nix flakes with ngit-grasp

---

## Prerequisites

- Nix installed (2.4 or later)
- Flakes enabled in your Nix configuration

---

## Solution

### Step 1: Enable Flakes (if not already enabled)

Check if flakes are enabled:

```bash
nix flake --version
```

If you get an error, enable flakes:

```bash
# Add to ~/.config/nix/nix.conf (create if doesn't exist)
mkdir -p ~/.config/nix
echo "experimental-features = nix-command flakes" >> ~/.config/nix/nix.conf

# Or for system-wide (requires sudo):
echo "experimental-features = nix-command flakes" | sudo tee -a /etc/nix/nix.conf
```

Restart the Nix daemon:

```bash
# On NixOS:
sudo systemctl restart nix-daemon

# On macOS:
sudo launchctl stop org.nixos.nix-daemon
sudo launchctl start org.nixos.nix-daemon

# On other Linux:
sudo pkill nix-daemon
```

---

### Step 2: Enter the Development Environment

```bash
cd ngit-grasp
nix develop
```

**What this does:**
- Reads `flake.nix` in the current directory
- Downloads and builds all dependencies
- Creates a shell with Rust, Git, and other tools
- Sets environment variables

**First run:** Will take several minutes to download and build  
**Subsequent runs:** Should be instant (cached)

---

### Step 3: Verify the Environment

```bash
# Check Rust is available
rustc --version
cargo --version

# Check Git is available
git --version

# Check you're in the Nix shell
echo $IN_NIX_SHELL  # Should output "impure"
```

---

### Step 4: Work with Subprojects

ngit-grasp has a subproject (`grasp-audit`) with its own flake:

```bash
# Main project
cd ngit-grasp
nix develop  # Uses ngit-grasp/flake.nix

# Subproject
cd grasp-audit
nix develop  # Uses grasp-audit/flake.nix
```

**Important:** Each directory has its own flake and environment!

---

## Common Tasks

### Build the Project

```bash
cd grasp-audit
nix develop
cargo build
```

**Or in one command:**

```bash
cd grasp-audit
nix develop -c cargo build
```

The `-c` flag runs a command in the Nix environment and exits.

---

### Run Tests

```bash
cd grasp-audit
nix develop -c cargo test
```

---

### Build Without Entering Shell

```bash
cd grasp-audit
nix build
```

This builds the package defined in `flake.nix` outputs.

---

### Update Dependencies

```bash
# Update flake.lock (updates all inputs)
nix flake update

# Update specific input
nix flake lock --update-input nixpkgs
```

**When to update:**
- Security vulnerabilities in dependencies
- Need newer version of Rust or other tools
- Monthly maintenance

---

### Clean Nix Store

```bash
# Remove unused packages
nix-collect-garbage

# Aggressive cleanup (removes all old generations)
nix-collect-garbage -d
```

**Warning:** This will remove all old versions. You'll need to re-download if you switch branches.

---

## Troubleshooting

### "nix: command not found"

**Problem:** Nix is not installed or not in PATH

**Solution:**
```bash
# Install Nix (official installer)
sh <(curl -L https://nixos.org/nix/install) --daemon

# Add to PATH (if needed)
source ~/.nix-profile/etc/profile.d/nix.sh
```

---

### "experimental features not enabled"

**Problem:** Flakes are not enabled

**Solution:**
```bash
# Add to ~/.config/nix/nix.conf
echo "experimental-features = nix-command flakes" >> ~/.config/nix/nix.conf

# Restart Nix daemon (see Step 1)
```

---

### "nix-shell: command not found" or wrong behavior

**Problem:** Using old `nix-shell` command instead of `nix develop`

**Solution:**
```bash
# ❌ Wrong (old Nix)
nix-shell

# ✅ Correct (Nix flakes)
nix develop
```

**Why:** Flakes use `nix develop`, not `nix-shell`. The old command looks for `shell.nix` which doesn't exist.

---

### "error: getting status of '/nix/store/...': No such file or directory"

**Problem:** Nix store is corrupted or incomplete

**Solution:**
```bash
# Verify Nix store
nix-store --verify --check-contents

# Repair if needed
nix-store --repair --verify --check-contents

# If still broken, re-enter environment
nix develop --refresh
```

---

### Build fails with "cannot find crate"

**Problem:** Cargo cache is stale or corrupted

**Solution:**
```bash
# Clean Cargo cache
cargo clean

# Rebuild
nix develop -c cargo build
```

---

### "error: unable to download"

**Problem:** Network issues or cache server down

**Solution:**
```bash
# Use different substituter
nix develop --option substituters "https://cache.nixos.org"

# Or build from source (slow)
nix develop --no-substitutes
```

---

## Advanced Usage

### Use direnv for Automatic Activation

Install [direnv](https://direnv.net/) to automatically enter Nix environment:

```bash
# Install direnv
nix-env -iA nixpkgs.direnv

# Create .envrc
echo "use flake" > .envrc

# Allow direnv
direnv allow

# Now cd into directory automatically activates environment!
cd ngit-grasp  # Automatically runs 'nix develop'
```

---

### Customize the Environment

Edit `flake.nix` to add packages:

```nix
{
  devShells.default = pkgs.mkShell {
    buildInputs = with pkgs; [
      # Existing packages
      cargo
      rustc
      
      # Add your packages here
      jq        # JSON processor
      ripgrep   # Fast grep
      fd        # Fast find
    ];
  };
}
```

Then reload:

```bash
nix develop --refresh
```

---

### Pin to Specific Rust Version

Edit `flake.nix`:

```nix
{
  inputs.rust-overlay.url = "github:oxalica/rust-overlay";
  
  outputs = { self, nixpkgs, rust-overlay }:
    let
      pkgs = import nixpkgs {
        overlays = [ rust-overlay.overlays.default ];
      };
      
      # Pin to specific version
      rust = pkgs.rust-bin.stable."1.75.0".default;
    in {
      devShells.default = pkgs.mkShell {
        buildInputs = [ rust ];
      };
    };
}
```

---

## Best Practices

### DO:
- ✅ Use `nix develop` for flakes (not `nix-shell`)
- ✅ Commit `flake.lock` to version control
- ✅ Update flakes monthly
- ✅ Use `-c` flag for one-off commands
- ✅ Use direnv for automatic activation

### DON'T:
- ❌ Use `nix-shell` with flakes
- ❌ Manually edit `flake.lock`
- ❌ Ignore flake update warnings
- ❌ Mix Nix and non-Nix environments
- ❌ Commit `.direnv/` to git

---

## Quick Reference

```bash
# Enter environment
nix develop

# Run command in environment
nix develop -c cargo build

# Build package
nix build

# Update dependencies
nix flake update

# Show flake info
nix flake show

# Check flake
nix flake check

# Clean up
nix-collect-garbage
```

---

## Related Documentation

- [Getting Started Tutorial](../tutorials/getting-started.md) - First-time setup
- [Nix Flakes Manual](https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-flake.html)
- [grasp-audit README](../../grasp-audit/README.md) - Subproject docs

---

*Part of the [ngit-grasp how-to guides](./)*