blob: 9b17042a7f169c3de7b0271b0fc28c7981342207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ config
, pkgs
, unstablePkgs
, unfreePkgs
, unstableUnfreePkgs
, userOptions
, ...
}:
{
imports = [
../../modules/base.nix
];
home.sessionPath = [
"${userOptions.userHome}/Library/Application Support/Coursier/bin"
];
home.packages = [
pkgs.alacritty
pkgs.stats
pkgs.zed-editor
];
}
|