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

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

  home.packages = [
    pkgs.nixgl.nixGLIntel
  ];

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