summaryrefslogtreecommitdiff
path: root/hosts/gheshki/home.nix
blob: 0483e4fd56b92ec389a0b053a0424944a4f3977e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config
, pkgs
, unstablePkgs
, unfreePkgs
, unstableUnfreePkgs
, userOptions
, lib
, ...
}:
{
  imports = [
    ../../modules/base.nix
  ];

  home.sessionPath = [
    "${userOptions.userHome}/.local/share/coursier/bin"
  ];

  programs.alacritty.settings.font.size = lib.mkForce 8;
}