blob: eb87acba8fdf7c5ae51dce04c43281d47309a5a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ 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
];
}
|