summaryrefslogtreecommitdiff
path: root/hosts/mentat/home.nix
blob: b154e2c7debe58e530af7a7abdbc6aa35e5060db (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.stats
    pkgs.xcodegen
  ];
}