blob: 3bead0fcd65aa11e0e1e23abba0a8692df97f439 (
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
|
{
config,
pkgs,
unstablePkgs,
unfreePkgs,
unstableUnfreePkgs,
userOptions,
...
}:
{
imports = [
../../modules/base.nix
];
home.sessionPath = [
"${userOptions.userHome}/Library/Application Support/Coursier/bin"
];
home.packages = [
pkgs.lima
pkgs.stats
pkgs.xcodegen
];
}
|