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